-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 2.04 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": "ml-inference-cfn",
"version": "0.1.0",
"description": "Kes Deployment for Machine Learning Inference",
"main": "index.js",
"scripts": {
"model": "node ./scripts/model.js",
"build": "node_modules/.bin/webpack",
"watch": "node_modules/.bin/webpack -w",
"deploy": "AWS_SDK_LOAD_CONFIG=true kes cf deploy --kes-folder config --kes-class config/kes.js",
"setup": "db/setup.sh",
"delete": "AWS_SDK_LOAD_CONFIG=true kes cf delete --kes-folder config --kes-class config/kes.js",
"gpu-util": "AWS_SDK_LOAD_CONFIG=true node scripts/gpu-util.js",
"verify": "AWS_SDK_LOAD_CONFIG=true node scripts/verify.js",
"sqs-push": "AWS_SDK_LOAD_CONFIG=true node scripts/run-sqs-push.js",
"download": "AWS_SDK_LOAD_CONFIG=true node scripts/download.js",
"convert-geojson": "python scripts/csv_to_geojson.py",
"test": "node test/test_sqs-push.js",
"tag-logs": "AWS_SDK_LOAD_CONFIG=true node scripts/tag-cloudwatch-logs.js"
},
"author": "Development Seed",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^4.2.0",
"aws-sdk": "^2.395.0",
"cli-table": "^0.3.1",
"d3-queue": "^3.0.7",
"js-yaml": "^3.12.1",
"knex": "^0.16.3",
"lodash.flatten": "^4.4.0",
"log-update": "^2.3.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"node-ssh": "^5.1.2",
"pg": "^7.8.0",
"split": "^1.0.1",
"through2-batch": "^1.1.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.26.0",
"dotenv": "^6.2.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"kes": "^2.2.7",
"memorystream": "^0.3.1",
"prepend-loader": "^0.0.2",
"proxyquire": "^2.1.3",
"sinon": "^7.4.2",
"tape": "^4.11.0",
"webpack": "^3.5.6"
}
}