-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "thesis-algorithm",
"version": "1.0.0",
"description": "Algorithm for the CVRP for serverless",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "npx ts-node index.ts",
"benchmark": "npx ts-node benchmark.ts",
"benchmark-savings": "npx ts-node benchmark-savings.ts",
"benchmark-svl": "npx ts-node master-process/lambdaBenchmark.ts",
"build": "rollup --config && cp webend_build.js aws_lambda/webend.js &&cp webend_build.js google_cloud_functions/webend.js",
"master": "npx ts-node master-process/index.ts"
},
"author": "Bernd Strehl <bernd.strehl@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^22.4.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-typescript2": "^0.14.0",
"sinon": "^5.0.10",
"ts-jest": "^22.4.6",
"webpack-cli": "^2.1.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"@types/node": "^10.1.3",
"aws-lambda": "^0.1.2",
"browserify": "^16.2.2",
"chalk": "^2.4.1",
"console-prompt": "^1.0.0",
"handlebars": "^4.0.11",
"lodash": "^4.17.10",
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.range": "^3.2.0",
"node-fetch": "^2.1.2",
"table": "^4.0.3",
"ts-node": "^6.0.5",
"typescript": "^2.8.3",
"vrpinstances": "^1.0.3",
"webpack": "^4.9.1",
"ws": "^5.2.0"
}
}