-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "vue-template",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.ts,.vue",
"lint:fix": "eslint --fix . --ext .js,.ts,.vue",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "cypress run-ct",
"test:e2e": "concurrently -s \"first\" -kn server,cypress \"npm:dev\" \"cypress run\"",
"cy": "cypress open",
"cy:ct": "cypress open-ct",
"prepare": "husky install"
},
"dependencies": {
"pinia": "^2.0.14",
"vue": "^3.2.25"
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@cypress/vite-dev-server": "^2.2.3",
"@cypress/vue": "^3.1.2",
"@types/node": "^17.0.36",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@vitejs/plugin-vue": "^2.3.1",
"concurrently": "^7.2.1",
"cypress": "^9.7.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.7.1",
"husky": "^8.0.1",
"lint-staged": "^12.4.3",
"minireset.css": "^0.0.7",
"prettier": "2.6.2",
"sass": "^1.52.1",
"typescript": "^4.5.4",
"vite": "^2.9.7",
"vue-tsc": "^0.34.7"
}
}