-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.18 KB
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
{
"name": "free-nutui",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:gh-pages": "vue-tsc --noEmit && vite build --base=./",
"preview": "vite preview",
"lint:eslint": "eslint \"src/**/*.{vue,js,ts,tsx}\" --fix",
"lint:stylelint": "stylelint --fix \"**/*.{vue,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"prepare": "husky install"
},
"dependencies": {
"@nutui/nutui": "^3.1.18",
"@vitejs/plugin-vue-jsx": "^1.3.9",
"@vueup/vue-quill": "^1.0.0-beta.8",
"apexcharts": "^3.35.0",
"async-validator": "^4.0.7",
"axios": "^0.26.1",
"lodash-es": "^4.17.21",
"pinia": "^2.0.13",
"seemly": "^0.3.3",
"store2": "^2.13.2",
"vooks": "^0.2.12",
"vue": "^3.2.25",
"vue-router": "4",
"vue3-apexcharts": "^1.4.1",
"vueuc": "^0.4.28"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/quill": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vicons/antd": "^0.12.0",
"@vicons/fluent": "^0.12.0",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "^2.3.0",
"autoprefixer": "^10.4.4",
"consola": "^2.15.3",
"eslint": "^8.12.0",
"eslint-config-standard": "^17.0.0-1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "14",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.5.0",
"free-core": "^1.1.8-22.dev",
"husky": ">=7",
"lint-staged": ">=10",
"naive-ui": "^2.27.0",
"postcss": "^8.4.12",
"postcss-html": "^1.3.0",
"sass": "^1.49.11",
"stylelint": "^14.6.1",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.4",
"unplugin-vue-components": "^0.18.5",
"vfonts": "^0.0.3",
"vite": "^2.9.0",
"vite-plugin-style-import": "^2.0.0",
"vue-tsc": "^0.29.8"
},
"lint-staged": {
"*.{ts,tsx,js,vue,md}": "pnpm lint:eslint",
"*.{vue,scss,css,sass}": "pnpm lint:stylelint"
}
}