-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vue3-app-new",
"version": "1.0.0",
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build:test": "vite build --mode test",
"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": {
"@originjs/vite-plugin-commonjs": "^1.0.3",
"axios": "^0.27.2",
"better-scroll": "^2.4.2",
"echarts": "^5.3.2",
"javascript-validate-utils": "^0.2.3",
"js-md5": "^0.7.3",
"lib-flexible": "^0.3.2",
"mitt": "^3.0.0",
"pinia": "^2.0.21",
"pinia-plugin-persistedstate": "^2.1.1",
"vant": "^3.6.2",
"vue": "^3.2.38",
"vue-i18n": "^9.1.9",
"vue-router": "^4.1.5",
"vue3-lottie": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^3.0.3",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vue/test-utils": "^2.0.2",
"commitizen": "^4.2.5",
"cz-customizable": "^7.0.0",
"eslint": "^8.23.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.4.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lint-staged": "^13.0.3",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.7.1",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-visualizer": "^5.8.1",
"start-server-and-test": "^1.14.0",
"vconsole": "^3.14.6",
"vite": "^3.0.9",
"vitest": "^0.23.1"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"lint-staged": {
"*.{scss,vue}": [
"stylelint --fix"
],
"*.{js,ts,vue}": [
"vue-cli-service lint"
]
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -eV"
}
}