-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.11 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
{
"name": "ad419-charts",
"version": "1.0.0",
"main": "index.js",
"author": "John Knoll <[email protected]>",
"license": "MIT",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run webpack",
"webpack": "webpack",
"webpack-watch": "webpack --watch",
"serve": "node dist/server.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node,Webpack\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\" \"npm run webpack-watch\"",
"publish": "webpack --env.prod"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/core-js": "^0.9.46",
"@types/d3": "^6.3.0",
"@types/d3-ease": "^2.0.0",
"@types/d3-force": "^2.1.0",
"@types/d3-geo": "^2.0.0",
"@types/d3-sankey": "^0.11.1",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.11",
"@types/node": "^14.14.25",
"@types/slick-carousel": "^1.6.34",
"@types/topojson": "^3.2.2",
"autoprefixer": "^7.2.5",
"awesome-typescript-loader": "^3.4.1",
"concurrently": "^3.5.1",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"json-loader": "^0.5.7",
"node-sass": "^4.11.0",
"nodemon": "^1.14.11",
"postcss-loader": "^2.0.10",
"sass-loader": "^6.0.6",
"shelljs": "^0.8.0",
"svg-inline-loader": "^0.8.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^4.1.3",
"url-loader": "^0.6.2",
"webpack": "^3.12.0"
},
"dependencies": {
"color": "^3.1.3",
"d3": "^6.5.0",
"d3-force": "^2.1.1",
"d3-geo": "^2.0.1",
"d3-sankey": "^0.12.3",
"errorhandler": "^1.5.1",
"es6-shim": "^0.35.3",
"express": "^4.17.1",
"innersvg-polyfill": "^0.0.5",
"jquery": "^3.5.1",
"slick-carousel": "^1.8.1",
"stickybits": "^3.7.8",
"topojson": "^3.0.2"
}
}