-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "killrvideo-nodejs",
"version": "0.0.0",
"description": "Reference application for using Cassandra, DataStax Enterprise, and NodeJS",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"clean": "rimraf dist",
"build": "npm-run-all --parallel \"build:*\"",
"build:js": "babel src --out-dir dist --source-maps",
"build:protos": "cpx \"lib/killrvideo-service-protos/src/**/*\" dist/protos --verbose",
"build:googleprotos": "node scripts/copy-google-protos.js dist/protos",
"watch": "npm-run-all clean --parallel \"build:* -- --watch\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/KillrVideo/killrvideo-nodejs.git"
},
"author": "Luke Tillman <[email protected]> (http://www.luketillman.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/KillrVideo/killrvideo-nodejs/issues"
},
"homepage": "https://killrvideo.github.io",
"private": true,
"dependencies": {
"async": "^2.5.0",
"bluebird": "^3.5.1",
"cassandra-driver": "^3.3.0",
"convict": "^4.0.1",
"dotenv": "^4.0.0",
"grpc": "^1.7.1",
"moment": "^2.19.1",
"regenerator-runtime": "^0.11.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"winston": "^2.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.1",
"cpx": "^1.5.0",
"grpc-tools": "^1.6.6",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2"
}
}