-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.75 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
106
107
108
109
110
{
"name": "@hitokoto/poll",
"private": true,
"scripts": {
"build": "nuxi build --dotenv .env.production",
"dev": "run-s gen:css && nuxi dev --dotenv .env.local",
"generate": "nuxi generate",
"gen:css": "tsx ./scripts/genAntdStyles.ts",
"preview": "nuxi preview",
"prepare": "husky install",
"lint:js": "eslint --ext \".js,.ts,.tsx,.jsx,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,htm,html,css,sss,less,scss,sass}\" --config .stylelintrc.js --ignore-path .gitignore",
"lint": "run-s lint:js && run-s lint:style",
"postinstall": "nuxi prepare && sh -c 'if [ command -v ./node_modules/.bin/husky ]; then ./node_modules/.bin/husky install; fi;'"
},
"devDependencies": {
"@ant-design-vue/nuxt": "^1.1.1",
"@ant-design/icons-vue": "^6.1.0",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@fancyapps/ui": "^5.0.24",
"@iconify/json": "^2.2.125",
"@nuxt/devtools": "latest",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/stylelint-module": "^5.1.0",
"@pinia-plugin-persistedstate/nuxt": "^1.1.2",
"@pinia/nuxt": "^0.4.11",
"@types/crypto-js": "^4.1.2",
"@types/markdown-it": "^13.0.2",
"@types/markdown-it-emoji": "^2.0.2",
"@types/md5": "^2.3.3",
"@types/node": "^20.8.2",
"@types/sortablejs": "^1.15.3",
"@types/validator": "^13.11.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@unocss/nuxt": "^0.56.5",
"@unocss/preset-attributify": "^0.56.5",
"@unocss/preset-icons": "^0.56.5",
"@unocss/preset-uno": "^0.56.5",
"@unocss/transformer-compile-class": "^0.56.5",
"@unocss/transformer-directives": "^0.56.5",
"@unocss/transformer-variant-group": "^0.56.5",
"@vant/nuxt": "^1.0.3",
"@vite-pwa/nuxt": "^0.1.1",
"@vueuse/core": "^10.4.1",
"@vueuse/nuxt": "^10.4.1",
"animate.css": "^4.1.1",
"ant-design-vue": "4.0.2",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.10",
"echarts": "^5.4.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"markdown-it": "^13.0.2",
"markdown-it-emoji": "^2.0.2",
"md-editor-v3": "^4.7.0",
"md5": "^2.3.0",
"meilisearch": "^0.35.0",
"modern-normalize": "^2.0.0",
"npm-run-all": "^4.1.5",
"nuxt": "^3.7.4",
"nuxt-gtag": "^1.1.1",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"pinyin-match": "^1.2.4",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.0.3",
"query-string": "^8.1.0",
"sass": "^1.69.0",
"sortablejs": "^1.15.0",
"sortablejs-vue3": "^1.2.9",
"stylelint": "^15.10.3",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.2.1",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"unplugin-icons": "^0.17.0",
"validator": "^13.11.0",
"vant": "^4.7.1",
"vite": "^4.4.11",
"vite-svg-loader": "^4.0.0",
"vue-countup-v3": "^1.3.0",
"vue-echarts": "^6.6.1",
"vue-next-masonry": "^1.1.3",
"xss": "^1.0.14"
},
"dependencies": {
"@nuxt/image": "1.0.0-rc.2",
"@types/lodash-es": "^4.17.9",
"lodash-es": "^4.17.21"
}
}