forked from noopkat/electric-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "electric-io",
"version": "0.1.0",
"description": "an IoT Dashboard for Azure IoT Hub",
"author": "Suz Hinton",
"main": "index.js",
"scripts": {
"start": "npm run watch",
"watch": "npm-run-all --parallel watch:server watch:build",
"watch:build": "webpack --progress --colors --watch",
"watch:server": "nodemon server.js",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "webpack --progress --colors",
"alex": "alex"
},
"dependencies": {
"@azure/core-amqp": "^1.1.0",
"@azure/event-hubs": "^5.0.1",
"@babel/runtime": "^7.6.2",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"azure-iothub": "^1.11.0",
"body-parser": "^1.19.0",
"chartist": "^0.11.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-sanitizer": "^1.0.5",
"jmespath": "^0.15.0",
"marked": "^0.8.0",
"rhea-promise": "^1.0.0",
"socket.io": "^2.3.0",
"vue": "^2.6.11",
"vue-a11y-dialog": "^0.5.0"
},
"engines": {
"node": ">= 10"
},
"engineStrict": true,
"keywords": [
"node",
"express",
"iot"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"@babel/plugin-syntax-jsx": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "7.8.4",
"@babel/preset-stage-2": "7.8.3",
"@types/jest": "25.1.2",
"@vue/test-utils": "1.0.0-beta.29",
"alex": "8.1.1",
"babel-jest": "25.1.0",
"babel-loader": "8.0.6",
"babel-minify-webpack-plugin": "0.3.1",
"css-loader": "3.4.2",
"debug": "4.1.1",
"eslint": "6.8.0",
"eslint-plugin-vue": "6.2.2",
"husky": "4.2.3",
"jest": "25.1.0",
"jest-axe": "3.3.0",
"nodemon": "2.0.2",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"style-loader": "1.1.3",
"supertest": "4.0.2",
"vue-jest": "4.0.0-beta.2",
"vue-loader": "15.9.0",
"vue-template-compiler": "2.6.11",
"webpack": "4.41.6",
"webpack-cli": "3.3.11",
"webpack-watch-server": "1.2.1",
"whatwg-fetch": "3.0.0"
},
"nodemonConfig": {
"ignore": [
"test/*",
"public/*"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}