-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "travelling-salesperson-sandbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jasmine",
"watch-node": "nodemon index.js",
"watch-webpack": "webpack --watch",
"watch": "concurrently -k -p \"[{name}]\" -n \"Webpack,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch-webpack\" \"npm run watch-node\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@types/d3": "^5.0.1",
"babel-polyfill": "^6.26.0",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "^1.4.3",
"crossfilter": "^1.3.12",
"d3": "^5.7.0",
"express": "^4.16.4",
"i18n": "^0.8.3",
"pug": "^2.0.3",
"rxjs": "^6.3.3",
"should": "^13.2.3",
"supertest": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^1.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"concurrently": "^4.0.1"
}
}