-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.42 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
{
"name": "nuxt3-template",
"private": true,
"type": "module",
"version": "2.0.0",
"scripts": {
"build": "nuxt build --dotenv .env.develop",
"dev": "node compress.js && nuxt dev --dotenv .env.runtime -p 3000 --host",
"generate:develop": "nuxt generate --dotenv .env.develop",
"generate:stage": "nuxt generate --dotenv .env.stage",
"generate:prod": "nuxt generate --dotenv .env.prod",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{ts,js,vue}": [
"eslint ."
]
},
"dependencies": {
"@pinia/nuxt": "^0.5.1",
"mathjs": "^12.4.1",
"nuxt": "^3.11.2",
"pinia": "^2.1.7",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@element-plus/nuxt": "^1.0.8",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/i18n": "^8.3.0",
"@nuxtjs/tailwindcss": "^6.11.4",
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
"dayjs-nuxt": "^2.1.9",
"element-plus": "^2.6.3",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.1",
"fs-extra": "^11.2.0",
"glob": "^10.4.1",
"prettier": "^3.2.5",
"sass": "^1.74.1",
"sharp": "^0.33.4"
},
"engines": {
"node": ">=18"
}
}