-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.57 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.57 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
{
"name": "enhancing-fleet-assignment",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel src -d build --source-maps inline",
"start": "nodemon src/server.js --exec babel-node",
"assign": "npm run build && node build/index.js",
"write-data": "npm run build && node build/data/WriteData.js",
"write-season-data": "npm run build && node build/data/WriteSeasonData.js",
"server": "npm run build && node build/server.js",
"parser": "npm run build && node build/parser.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/watcharaphat/enhancinf-fleet-assignment",
"author": "watcharaphat.m@ku.th",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.19.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1"
},
"dependencies": {
"bipartite-matching": "^1.0.0",
"chi-squared": "^1.1.0",
"connected-components": "^1.0.0",
"express": "^4.16.3",
"moment": "^2.20.1",
"moment-range": "^3.1.1",
"moment-timezone": "^0.5.16",
"mongoose": "^5.0.15",
"papaparse": "^4.3.7"
}
}