forked from lucas-santosP/calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 816 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "vue-calculator",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"deploy": "push-dir --dir=dist --branch=gh-pages --cleanup",
"test:unit": "jest --watch --passWithNoTests --onlyChanged",
"test:all": "jest --coverage"
},
"dependencies": {
"vue": "^3.0.5"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@vitejs/plugin-vue": "^1.2.1",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-rc.4",
"autoprefixer": "^10.2.5",
"jest": "^26.6.3",
"postcss": "^8.2.10",
"push-dir": "^0.4.1",
"tailwindcss": "^2.1.1",
"ts-jest": "^26.5.5",
"typescript": "^4.1.3",
"vite": "^2.1.5",
"vue-jest": "^5.0.0-alpha.7",
"vue-tsc": "^0.0.15"
}
}