-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.16 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
47
48
49
50
{
"name": "login-page",
"version": "0.0.0",
"private": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"cypress-e2e": "cypress open",
"preview": "vite preview --host 127.0.0.1 --port 3030",
"test": "start-server-and-test preview http://127.0.0.1:3030 cypress-e2e"
},
"dependencies": {
"axios": "^1.4.0",
"core-js": "^3.6.5",
"history": "^5.0.1",
"sass": "^1.38.2",
"vee-validate": "^4.4.9",
"vue": "3.2.1",
"vue-router": "4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.6.0",
"@vue/compiler-sfc": "^3.2.6",
"autoprefixer": "^10.3.3",
"cypress": "12.14.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^7.17.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"sass-loader": "^12.1.0",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^2.2.9",
"vite": "^2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}