-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
75 lines (75 loc) · 2.63 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "killrvideo-web",
"version": "2.1.0",
"description": "Web Server and UI for the KillrVideo reference application",
"main": "dist/server/index.js",
"scripts": {
"install:client": "cd src/client && npm install",
"clean": "npm-run-all --parallel \"clean:*\"",
"clean:client": "cd src/client && npm run clean",
"clean:server": "rimraf dist/server",
"build": "npm-run-all --parallel build:client \"build:server:*\"",
"build:client": "cd src/client && npm run build",
"build:server": "npm-run-all --parallel \"build:server:*\"",
"build:server:js": "babel src/server --out-dir dist/server --source-maps",
"build:server:resources": "cpx \"src/server/resources/**\" dist/server/resources --verbose",
"build:server:protos": "cpx \"lib/killrvideo-service-protos/src/**\" dist/server/resources/protos --verbose",
"build:server:googleprotos": "node scripts/copy-google-protos.js dist/server/resources/protos",
"watch": "npm-run-all clean --parallel \"watch:*\"",
"watch:client": "cd src/client && npm run watch",
"watch:server": "npm-run-all --parallel \"build:server:* -- --watch\"",
"postversion": "git push --follow-tags",
"release:build": "cross-env NODE_ENV=production npm run build",
"release": "npm-run-all clean release:build",
"start": "node dist/server/index.js"
},
"author": "Luke Tillman <[email protected]> (http://www.luketillman.com)",
"repository": {
"type": "git",
"url": "https://github.com/KillrVideo/killrvideo-web.git"
},
"homepage": "https://killrvideo.github.io",
"files": [
"*.md",
"dist"
],
"engines": {
"node": ">=6.11.0"
},
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"babel-plugin-transform-es2015-parameters": "^6.11.4",
"cpx": "^1.5.0",
"cross-env": "^2.0.1",
"dotenv": "^2.0.0",
"grpc-tools": "^1.0.0",
"npm-run-all": "^2.3.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"cassandra-store": "^3.0.0",
"dse-driver": "^1.3.0",
"config": "^1.21.0",
"express": "^4.14.0",
"express-session": "^1.14.0",
"falcor-express": "^0.1.2",
"falcor-json-graph": "^1.1.7",
"falcor-router": "^0.4.0",
"grpc": "^1.0.0",
"js-yaml": "^3.6.1",
"memoizee": "^0.4.1",
"passport": "^0.3.2",
"ramda": "^0.21.0",
"simple-get": "^2.2.2",
"socket.io": "^1.4.8",
"uuid": "^2.0.2",
"winston": "^2.2.0"
}
}