-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.93 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.93 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
{
"private": true,
"name": "pi-",
"version": "2.7.1",
"updateDate": "2019-02-26",
"description": "PI Solutions web-app",
"mapVersion": "v1",
"main": "server.js",
"scripts": {
"start": "babel-node ./src/main.js",
"lint": "eslint src --fix",
"build": "webpack"
},
"engines": {
"node": ">=9.0.0"
},
"dependencies": {
"canvas": "^2.5.0",
"d3": "^5.9.7",
"dotenv": "^6.2.0",
"eslint": "^5.14.1",
"express": "^4.17.1",
"fs": "0.0.1-security",
"helmet": "^3.20.0",
"leaflet": "^1.5.1",
"mathjs": "^6.0.3",
"moment": "^2.24.0",
"mqtt": "^3.0.0",
"node-kmeans": "^1.1.9",
"path": "^0.12.7",
"prettier": "^1.16.4",
"redis": "^2.8.0",
"redlock": "^3.1.2",
"request": "^2.88.0",
"socket.io": "^2.2.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^8.1.2",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^4.14.0",
"eslint-config-google": "^0.9.1",
"eslint-config-prettier": "^3.1.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.5.1",
"jsdom": "^15.1.1",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.scss": [
"stylelint --syntax=scss --fix",
"git add"
]
}
}