-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.59 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.59 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pi-control",
"productName": "Pi-Control 🥷",
"version": "0.5.0",
"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-1643791578.532b3d6",
"@nuxtjs/axios": "^5.13.6",
"core-js": "^3.21.1",
"node-pty": "^0.10.1",
"nuxt": "^2.15.8",
"nuxt-build-optimisations": "^1.0.7"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@fontsource/poppins": "^4.5.5",
"@mdi/js": "^6.5.95",
"@nuxtjs/composition-api": "^0.31.0",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/vuetify": "^1.12.3",
"@vuex-orm/core": "^0.36.4",
"archiver": "^5.3.0",
"bcryptjs": "^2.4.3",
"chart.js": "^3.7.0",
"concurrently": "^7.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"dotenv-cli": "^4.1.1",
"eslint": "^8.6.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-vue": "^8.5.0",
"express": "^4.17.3",
"fs-extra": "^10.1.0",
"jsonwebtoken": "^8.5.1",
"lowdb": "^3.0.0",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"nodemon": "^2.0.15",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"prompts": "^2.4.2",
"release-it": "^14.11.8",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.1",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"vue-chart-3": "^2.0.3",
"vue-socket.io": "^3.0.10",
"vue-toastification": "^1.7.14",
"vuex-persistedstate": "^4.1.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0",
"xterm": "^4.16.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-unicode11": "^0.3.0"
}
}