-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 2.24 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
66
67
{
"name": "unraidapi",
"version": "0.5.0",
"description": "A new UI and API for controlling multiple unraid instances",
"author": "Will",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue --ignore-path ../.gitignore .",
"precommit": "npm run lint",
"test": "jest",
"dev": "cross-env KeyStorage=config MQTTBroker=192.168.1.85 MQTTPort=1883 MQTTUser=mqtt MQTTPass=MQTTP4ss MQTTBaseTopic=homeassistant NUXT_HOST=0.0.0.0 NUXT_PORT=3000 NODE_ENV=development nodemon --max-old-space-size=4096 server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NUXT_HOST=0.0.0.0 NODE_ENV=production node server/index.js",
"generate": "nuxt generate"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@nuxtjs/axios": "^5.12.3",
"@nuxtjs/eslint-module": "^0.0.1",
"@nuxtjs/pwa": "^2.6.0",
"@nuxtjs/vuetify": "0.5.5",
"axios": "^0.21.1",
"cross-env": "^5.2.1",
"express": "^4.16.4",
"form-data": "^2.5.1",
"fs": "0.0.1-security",
"html-table-to-json": "^0.4.1",
"http": "0.0.0",
"js-base64": "^2.6.4",
"mqtt": "^3.0.0",
"node-fetch": "^2.6.1",
"nuxt": "^2.14.10",
"uniqid": "^5.2.0",
"vuetify-loader": "^1.6.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"@vue/test-utils": "^1.1.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^5.2.3",
"jest": "^24.9.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"vue-jest": "^3.0.7"
}
}