-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1017 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1017 Bytes
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
{
"name": "MobileTrendVis",
"version": "0.1.0",
"description": "",
"main": "app.js",
"repository": "https://github.com/Microsoft/MobileTrendVis",
"author": "Microsoft",
"license": "MIT",
"engines": {
"node": "8.9.4",
"npm": "5.6.0"
},
"dependencies": {
"clipboard": "^1.7.1",
"csv-loader": "^2.1.1",
"d3": "^4.9.1",
"d3-rect": "^1.0.1",
"express": "^4.16.4",
"flubber": "^0.4.2",
"pre-loader": "^0.5.0",
"socket.io": "2.1.1",
"socket.io-client": "2.1.1"
},
"devDependencies": {
"concurrently": "^3.6.1",
"jshint": "^2.9.7",
"jshint-loader": "^0.8.4",
"serve": "^10.1.2",
"webpack": "^3.12.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-dev-server": "^3.2.1"
},
"optionalDependencies": {
"d3": "^4.9.1",
"moment": "^2.22.2"
},
"scripts": {
"start": "concurrently --kill-others \"webpack --watch --display-error-details\" \"node app.js\" &",
"watch": "webpack-dev-server --inline --colors"
}
}