-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.35 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
{
"name": "vite-project",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "esno ./scripts/build.ts run serve --mode=development",
"build:prod": "esno ./scripts/build.ts run build --mode=production",
"build:staging": "esno ./scripts/build.ts run build --mode=staging",
"report": "npm run build:staging -- --report=true",
"lint": "npm run lint:js && npm run lint:style",
"lint:js": "eslint --ext .vue,.ts,.tsx .",
"lint:js--fix": "npm run lint:js -- --fix",
"lint:style": "stylelint \"src/**/*.{vue,css,less,scss,postcss}\"",
"lint:style--fix": "npm run lint:style -- --fix",
"type:check": "vue-tsc --noEmit --skipLibCheck",
"precommit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.23.0",
"nprogress": "^0.2.0",
"pinia": "^2.0.11",
"vue": "^3.3.4",
"vue-router": "^4.0.11"
},
"devDependencies": {
"@types/node": "^16.10.3",
"@types/nprogress": "^0.2.0",
"@types/postcss-pxtorem": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-legacy": "^4.0.3",
"@vitejs/plugin-vue": "^4.2.1",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"autoprefixer": "^10.4.14",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-define-config": "^1.20.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.15.0",
"esno": "^0.14.0",
"husky": "^7.0.0",
"inquirer": "^8.2.0",
"lint-staged": "^11.2.3",
"postcss": "^8.4.5",
"postcss-html": "^1.3.0",
"postcss-pxtorem": "^6.0.0",
"postcss-scss": "^4.0.3",
"prettier": "^2.8.8",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.62.1",
"shelljs": "^0.8.5",
"stylelint": "^15.6.2",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-prettier": "^3.0.0",
"typescript": "^4.4.3",
"vite": "^4.3.2",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.0"
},
"engines": {
"node": ">=16.15.1"
},
"lint-staged": {
"*.{vue,ts,tsx}": "eslint",
"*.{vue,css,less,scss,postcss}": "stylelint"
}
}