-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.01 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
{
"name": "pi-control",
"productName": "Pi-Control 🐱👤",
"version": "0.0.1",
"description": "Pi-Control helps with gathering information, as well as to simplify controlling your raspberry pi.",
"author": "borsTiHD",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/borsTiHD/pi-control"
},
"type": "module",
"scripts": {
"dev:nuxt": "nuxt src/client",
"dev:api": "nodemon ./src/api/app.js",
"dev": "cross-env NODE_ENV=development concurrently \"yarn dev:api\" \"yarn dev:nuxt\"",
"build:nuxt": "nuxt generate src/client",
"build:api": "webpack",
"build:release": "cross-env NODE_ENV=production node ./src/build.js --release=true",
"build": "cross-env NODE_ENV=production node ./src/build.js",
"release": "dotenv release-it --",
"start": "node ./dist/server/app.cjs",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js"
},
"dependencies": {
"@nuxtjs/auth-next": "5.0.0-1622918202.e815752",
"@nuxtjs/axios": "^5.13.6",
"core-js": "^3.14.0",
"nuxt": "^2.15.6"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/vuetify": "^1.11.3",
"archiver": "^5.3.0",
"babel-eslint": "^10.1.0",
"bcryptjs": "^2.4.3",
"concurrently": "^6.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.28.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.10.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"idb": "^6.1.2",
"jsonwebtoken": "^8.5.1",
"lowdb": "^2.1.0",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"release-it": "^14.9.0",
"vue-toastification": "^1.7.11",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^3.0.0"
}
}