-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 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
62
63
64
65
{
"name": "webrtc-hack",
"version": "1.0.0",
"description": "App for appropriately matching volunteer mentors with mentees",
"main": "index.js",
"scripts": {
"nodemon": "nodemon backend/lib/index.js --exec babel-node --presets es2015,stage-1",
"server-build": "babel backend/lib -d backend/dist --presets es2015,stage-1",
"production-serve": "node backend/dist/index.js",
"dev": "webpack-dev-server --hot --inline --content-base public/",
"watch": "webpack --watch --progress",
"prestart": "webpack --progress --config webpack.config.js && babel backend/lib -d backend/dist --presets es2015,stage-1",
"start": "node backend/dist/index.js",
"lint": "./node_modules/.bin/eslint .",
"lint-fix": "./node_modules/.bin/eslint . --fix",
"test": "npm run server-build && tape ./backend/tests/runner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAC7/webrtc"
},
"author": "FAC7",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC7/webrtc/issues"
},
"homepage": "https://github.com/FAC7/webrtc#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.2.3",
"node-sass": "^3.4.2",
"nodemon": "^1.9.1",
"path": "^0.12.7",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"tape": "^4.5.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"wrapping-tape": "0.0.3"
},
"dependencies": {
"axios": "^0.9.1",
"bell": "^7.3.0",
"bluebird": "^3.3.4",
"crypto": "0.0.3",
"env2": "^2.0.7",
"hapi": "^13.2.2",
"hapi-auth-cookie": "^6.1.1",
"inert": "^3.2.0",
"jsonwebtoken": "^5.7.0",
"react": "^0.14.8",
"react-bootstrap": "^0.28.4",
"react-dom": "^0.14.8",
"react-router": "^2.0.1",
"redis": "^2.6.0-0"
}
}