forked from lucasanthony/tcc-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "tcc-front",
"version": "0.0.0",
"scripts": {
"dev": "VUE_ENV=dev vite",
"postinstall": "npm run build",
"start": "VUE_ENV=prod node server.js",
"build": "vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"@element-plus/icons-vue": "^1.1.4",
"axios": "^0.27.2",
"connect-history-api-fallback": "^1.6.0",
"element-plus": "^2.1.11",
"express": "^4.18.1",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"pug": "^3.0.2",
"serve-static": "^1.15.0",
"vue": "^3.2.33",
"vue-router": "^4.0.15",
"vue-the-mask": "^0.11.1",
"vuex": "^4.0.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.20",
"cypress": "^9.5.4",
"eslint": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^8.2.0",
"jsdom": "^19.0.0",
"prettier": "^2.5.1",
"pug-plain-loader": "^1.1.0",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"start-server-and-test": "^1.14.0",
"vite": "^2.9.5",
"vitest": "^0.9.3"
}
}