-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
105 lines (105 loc) · 3.07 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "game",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"build-dev": "vite build --mode staging",
"preview": "vite preview",
"prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"eslint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"stylelint": "stylelint \"src/**/*.{css,scss,vue}\"",
"stylefix": "stylelint \"src/**/*.{css,scss,vue}\" --fix",
"prepare": "git init && husky install",
"commit": "git add . && cz-customizable && git push",
"scriptname": "cmd"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@formily/antd": "^2.3.1",
"@formily/core": "^2.3.1",
"@formily/vue": "^2.3.1",
"amfe-flexible": "^2.2.1",
"ant-design-vue": "4.x",
"axios": "^1.2.6",
"core-js": "^3.8.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nprogress": "^0.2.0",
"pinia": "^2.0.29",
"pinia-plugin-persistedstate": "^3.0.2",
"screenfull": "^6.0.2",
"vue": "^3.2.45",
"vue-request": "^2.0.4",
"vue-router": "^4.0.3",
"vue-touch": "^2.0.0-beta.4"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/lodash": "^4.14.202",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"autoprefixer": "^10.4.13",
"babel-plugin-import": "^1.13.8",
"commitizen": "^4.3.0",
"commitlint": "^17.4.4",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"cz-git": "^1.5.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.4.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.8.4",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"tailwindcss": "^3.2.4",
"typescript": "*",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.0.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-windicss": "^1.8.8",
"vue-tsc": "^1.0.11"
},
"lint-staged": {
"src/**/*.{js,cjs,ts,html,json,css,scss,vue}": [
"npx prettier --write"
],
"src/**/*.{js,cjs,ts,vue}": [
"npx eslint --fix"
],
"./*.{js,cjs,ts,html,json}": [
"npx prettier --write"
],
"./*.{js,cjs,ts}": [
"npx eslint --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}