-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "inventory",
"version": "4.0.1",
"description": "Little helper application to manage (cellar) inventory.",
"author": "Raphael Horber ([email protected])",
"private": true,
"scripts": {
"dev": "nuxt dev --dotenv .env.development",
"devv": "yarn dev -o",
"build": "nuxt build --dotenv .env.production",
"start": "nuxt start",
"lint:js": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js",
"lintfix": "yarn lint:js --fix",
"precommit": "npm run lint"
},
"engines": {
"node": "16.x || 18.x",
"yarn": "1.x"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/composition-api": "^0.33.1",
"@pinia/nuxt": "0.2.1",
"buefy": "^0.9.23",
"html5-qrcode": "^2.3.7",
"nuxt": "2.16.3",
"pinia": "^2.0.33",
"vue": "^2.7.14",
"webpack": "^4.46.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@nuxt/types": "2.16.3",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"eslint": "^8.37.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.10.0",
"sass": "^1.49.9",
"sass-loader": "^10.1.1"
}
}