-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.66 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
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "platform",
"private": false,
"description": "一个有趣的工具站",
"packageManager": "[email protected]",
"version": "1.0.0",
"funding": "https://github.com/sponsors/szmxx",
"homepage": "https://github.com/szmxx/platform#readme",
"license": "mit",
"type": "module",
"author": {
"name": "cola",
"email": "[email protected]",
"url": "https://aitimi.cn"
},
"repository": {
"type": "git",
"url": "https://github.com/szmxx/platform",
"directory": "."
},
"bugs": {
"url": "https://github.com/szmxx/platform/issues"
},
"keywords": [
"template",
"nuxt3",
"vue3",
"vite"
],
"scripts": {
"build": "nuxi build --dotenv .env.production && pnpm exec playwright install ",
"dev": "nuxi dev --dotenv .env.development --host",
"dev:pwa": "VITE_PLUGIN_PWA=true nuxi dev",
"start": "node .output/server/index.mjs",
"typecheck": "vue-tsc --noEmit",
"postinstall": "nuxi prepare",
"generate": "nuxi generate",
"analyze": "nuxi analyze",
"start:generate": "npx serve .output/public",
"test:unit": "vitest",
"test:js-dom": "VITEST_DOM_ENV=js-dom pnpm test:unit --run",
"test": "pnpm test:js-dom --api.port 3060 ",
"preinstall": "husky install",
"lint": "eslint --ext .ts,vue,tsx --ignore-path .gitignore .",
"style": "stylelint ./**/*.{css,scss,vue}",
"tslint": "vue-tsc --noEmit",
"commit": "git-cz",
"changelogen": "changelogen --bump",
"images": "bash images.sh"
},
"dependencies": {
"@iconify-json/ion": "^1.1.12",
"@iconify-json/material-symbols": "^1.1.59",
"@nuxt/image-edge": "1.0.0-rc.2-28252196.34e7c67",
"@pinia/nuxt": "^0.4.11",
"@vant/nuxt": "^1.0.2",
"@vueuse/core": "^10.4.1",
"@vueuse/nuxt": "^10.3.0",
"dayjs": "^1.11.9",
"file-saver": "^2.0.5",
"lodash-es": "^4.17.21",
"modern-screenshot": "^4.4.31",
"monaco-editor": "^0.43.0",
"nuxt": "^3.7.3",
"rrweb": "2.0.0-alpha.11",
"vant": "^4.6.8",
"watermark-js-plus": "^1.3.7"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/cz-commitlint": "^17.7.1",
"@nuxt/devtools": "^0.7.4",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/i18n": "8.0.0-rc.4",
"@nuxtseo/module": "2.0.0-beta.15",
"@types/file-saver": "^2.0.5",
"@types/lodash-es": "^4.17.9",
"@unocss/nuxt": "^0.54.1",
"@vite-pwa/nuxt": "^0.1.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"changelogen": "^0.5.5",
"commitizen": "^4.3.0",
"consola": "^3.2.3",
"eslint": "^8.46.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"jsonc-eslint-parser": "^2.3.0",
"lint-staged": "^14.0.1",
"nuxt-vitest": "^0.10.2",
"pinia": "^2.1.6",
"playwright": "^1.38.1",
"postcss-html": "^1.5.0",
"prettier": "^3.0.3",
"rrweb-player": "1.0.0-alpha.4",
"sass": "^1.66.1",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.2",
"typescript": "^5.1.6",
"vitest": "^0.34.2",
"vitest-environment-nuxt": "^0.10.2",
"vue-tsc": "^1.8.8"
},
"lint-staged": {
"src/**/*.{json,md,vue}": "prettier -w -u",
"docs/**/*.{json,md,vue}": "prettier -w -u",
"*.{js,jsx,ts,tsx,vue}": "npm run lint --fix",
"*.{less,sass,css,scss,vue}": "npm run style --fix"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}