-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 963 Bytes
/
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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "ENV=BUILD nuxt build --port 8080 ",
"dev": "ENV=DEV nuxt dev --port 8080",
"generate": "nuxt generate",
"preview": "PORT=4000 nuxt preview ",
"postinstall": "nuxt prepare",
"lint": "eslint --ext .ts,.js,.vue ."
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vue/eslint-config-standard": "^8.0.1",
"axios": "^1.4.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.11.0",
"nuxt": "^3.4.3",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"typescript": "^5.0.4",
"vuetify": "^3.2.2"
},
"dependencies": {
"normalize.css": "^8.0.1",
"prettier": "^2.8.8"
}
}