-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "@visualstorytelling/provenance-tree-calculator-demo",
"main": "src/index.js",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack-dev-server --watch --inline --host 0.0.0.0",
"lint": "tslint --project ."
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"tslint --fix",
"git add"
],
"*.{css,scss,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/d3": "^5.0.0",
"@types/d3-hierarchy": "^1.1.2",
"@types/node": "^10.5.1",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.3",
"json-loader": "^0.5.7",
"lint-staged": "^8.0.4",
"lodash": "^4.17.10",
"prettier": "^1.13.5",
"sass-loader": "^7.0.1",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.0",
"tslint": "^5.10.0",
"typescript": "^3.1.6",
"url-loader": "^1.0.1",
"v": "^0.3.0",
"webpack": "^4.8.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@types/jquery": "^3.3.29",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@visualstorytelling/provenance-core": "*",
"@visualstorytelling/provenance-tree-visualization": "*",
"@visualstorytelling/slide-deck-visualization": "*",
"cross-env": "5.2.0",
"d3": "^5.4.0",
"d3-hierarchy": "^1.1.6",
"jquery": "^3.3.1",
"normalize.css": "^8.0.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
}
}