-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
93 lines (93 loc) · 2.41 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
92
93
{
"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 --color --watch",
"watch:server": "nodemon server.js",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "webpack --progress --color",
"alex": "alex",
"lint": "eslint --ext .js,.vue public",
"lint:fix": "eslint --fix --ext .js,.vue public"
},
"dependencies": {
"@azure/core-amqp": "^1.1.0",
"@azure/event-hubs": "^5.0.1",
"@babel/runtime": "^7.12.5",
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"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": "^3.0.0",
"vue": "^2.6.12",
"vue-a11y-dialog": "^0.5.2",
"vue-accessible-color-picker": "^1.1.2"
},
"engines": {
"node": ">= 10"
},
"engineStrict": true,
"keywords": [
"node",
"express",
"iot"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-syntax-jsx": "7.12.1",
"@babel/plugin-transform-modules-commonjs": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-stage-2": "7.8.3",
"@types/jest": "26.0.20",
"@vue/test-utils": "1.1.2",
"alex": "9.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"babel-minify-webpack-plugin": "0.3.1",
"css-loader": "5.0.1",
"debug": "4.3.2",
"eslint": "7.19.0",
"eslint-plugin-vue": "7.5.0",
"husky": "4.3.8",
"jest": "26.6.3",
"jest-axe": "4.1.0",
"nodemon": "2.0.7",
"npm-run-all": "4.1.5",
"style-loader": "2.0.0",
"supertest": "6.1.3",
"vue-jest": "4.0.0-rc.1",
"vue-loader": "15.9.6",
"vue-template-compiler": "2.6.12",
"webpack": "5.19.0",
"webpack-cli": "4.4.0",
"webpack-watch-server": "1.2.1",
"whatwg-fetch": "3.5.0"
},
"nodemonConfig": {
"ignore": [
"test/*",
"public/*"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix",
"pre-push": "alex"
}
}
}