-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.34 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
{
"private": true,
"version": "1.0.0",
"name": "nuxt3-example",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"setup": "yarn setup:create-env",
"setup:create-env": "cp .env.template .env",
"start": "env $(grep -v '^#' ./.env) nuxt start",
"lint": "eslint . --ext .ts,.vue",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"deploy:tag": "TAG=`echo staging-abo-$(date +%Y%m%d-%H%M%S)` && git tag $TAG && git push origin $TAG",
"deploy:staging": "yarn deploy:delete-staging-tag && yarn deploy:tag",
"deploy:delete-staging-tag": "git fetch --tags && git push origin --delete $(git tag -l 'staging-*') || true && git fetch origin --prune 'refs/tags/*:refs/tags/*'"
},
"devDependencies": {
"@mdi/font": "^7.1.96",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"nuxt": "3.0.0",
"prettier": "^2.8.1",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"typescript": "^4.9.4",
"vite-plugin-vuetify": "^1.0.1",
"vuetify": "^3.0.6"
},
"dependencies": {
"@pinia/nuxt": "^0.4.6",
"ky": "^0.33.0",
"ky-universal": "^0.11.0",
"pinia": "^2.0.28"
},
"engines": {
"node": ">=16"
}
}