-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.34 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
{
"private": true,
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev -p=3000",
"generate": "nuxi generate",
"static": "npm run build && npm run generate",
"preview": "nuxi preview",
"lint": "eslint --ext .vue,.js,.jsx,.ts,.tsx ./ --max-warnings 0",
"lint:fix": "eslint --ext .vue,.js,jsx,.ts,.tsx ./ --max-warnings 0 --fix",
"stylelint": "stylelint assets/style/**/*.{html,vue,sass,less} --custom-syntax postcss-less",
"stylelint:fix": "stylelint --fix assets/style/**/*.{html,vue,vss,sass,less} --custom-syntax postcss-less",
"site:preview": "npm run build && cp -r .output _site",
"test": "echo \"no test specified,work in process\"",
"test:coverage": "echo \"no test:coverage specified,work in process\""
},
"devDependencies": {
"@pinia/nuxt": "^0.1.9",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vueuse/core": "^8.6.0",
"@vueuse/nuxt": "^8.6.0",
"cz-conventional-changelog": "^3.3.0",
"dayjs": "^1.11.0",
"echarts": "^5.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.16.0",
"eslint-plugin-vue-scoped-css": "^2.2.0",
"hex-to-hsl": "^1.0.2",
"husky": "^8.0.1",
"less": "^4.1.2",
"lint-staged": "^12.3.4",
"nprogress": "^1.0.0-1",
"nuxt": "3.0.0-rc.3",
"nuxt-lodash": "^2.2.0",
"pinia": "^2.0.14",
"postcss-less": "^6.0.0",
"prettier": "^2.6.2",
"qrcode.vue": "^3.3.3",
"qs": "^6.10.3",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-less": "^1.0.6",
"stylelint-order": "^5.0.0",
"tdesign-icons-vue-next": "^0.1.2",
"tdesign-vue-next": "^0.16.0",
"tvision-color": "^1.4.0",
"typescript": "^4.7.3",
"vite-svg-loader": "^3.3.0",
"vue-clipboard3": "^2.0.0",
"vue-color-kit": "^1.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"npm run lint:fix",
"git add ."
],
"*.{html,vue,vss,sass,less}": [
"npm run stylelint:fix",
"git add ."
]
},
"engines": {
"node": ">=16.0.0"
}
}