-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.99 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
{
"name": "nuxt3-app-starter",
"version": "1.9.0",
"description": "A Nuxt(3) app starter!",
"author": {
"name": "yisibell",
"email": "[email protected]"
},
"type": "module",
"private": true,
"keywords": [
"nuxt3",
"vue3",
"starter",
"ssr",
"vite",
"pinia"
],
"bugs": {
"url": "https://github.com/yisibell/nuxt3-app-starter/issues"
},
"homepage": "https://github.com/yisibell/nuxt3-app-starter",
"scripts": {
"pm2:docker:start": "pm2-runtime start ecosystem.config.js",
"pm2:start": "pm2 start ecosystem.config.cjs",
"pm2:docker:start-ft": "pm2-runtime start ecosystem.ft.config.js",
"pm2:start-ft": "pm2 start ecosystem.ft.config.cjs",
"dev": "node ./scripts/dev.js",
"build:ft": "node ./scripts/build.js --env=ft",
"build": "node ./scripts/build.js --env=production",
"start:ft": "node ./scripts/app.js --env=ft",
"start": "node ./scripts/app.js --env=production",
"preview": "nuxt preview",
"prepare": "nuxt prepare",
"cleanup": "nuxt cleanup",
"lint": "eslint .",
"release": "changelogen --release && git push --follow-tags",
"pack-lang": "node ./scripts/pack-lang.js"
},
"dependencies": {
"@pinia/nuxt": "^0.9.0",
"countdownbar": "^1.6.0",
"dayjs": "^1.11.13",
"lodash-es": "^4.17.21",
"swiper": "^11.2.2",
"vant": "^4.9.17"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.0.1",
"@nuxtjs/i18n": "^9.2.0",
"@pinia-plugin-persistedstate/nuxt": "^1.2.1",
"@vant/nuxt": "^1.0.6",
"changelogen": "^0.5.7",
"consola": "^3.4.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.19.0",
"eslint-plugin-format": "^1.0.1",
"execa": "^9.5.2",
"minimist": "^1.2.8",
"nuxt": "^3.15.4",
"nuxt-multi-cache": "^3.4.0",
"nuxt-proxy-request": "^2.1.0",
"nuxt-svg-icons": "^2.0.5",
"prettier": "^3.4.2",
"sass": "^1.84.0",
"unstorage": "^1.14.4"
},
"engines": {
"node": ">=20"
}
}