-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.19 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.19 KB
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
{
"name": "LanGo",
"version": "1.0.0",
"description": "Language learning platform",
"main": "server.js",
"scripts": {
"test": "mocha spec/setup/setup.js **/clientSpec/*.spec.js & mocha spec/setup/setup.js **/serverSpec/*.spec.js & mocha spec/setup/setup.js **/dbSpec/*.spec.js",
"start": "webpack --progress --colors & nodemon server/server.js & nodemon server/rtcServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uberforcats/2016-09-thesis.git"
},
"author": "uberforcats",
"license": "ISC",
"bugs": {
"url": "https://github.com/uberforcats/2016-09-thesis/issues"
},
"homepage": "https://github.com/uberforcats/2016-09-thesis",
"dependencies": {
"axios": "^0.15.2",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.2",
"getconfig": "^3.0.0",
"jquery": "^3.1.1",
"material-ui": "^0.16.2",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-logger": "^1.1.0",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-tap-event-plugin": "git+https://github.com/zilverline/react-tap-event-plugin.git#master",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"request": "^2.78.0",
"signal-master": "^1.0.1",
"simplewebrtc": "^2.2.1",
"webpack": "^1.13.3"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.1",
"eslint-config-hackreactor": "github:hackreactor-labs/eslint-config-hackreactor",
"jsdoc": "^3.4.3",
"jsdom": "^9.8.3",
"knex": "^0.12.6",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"pg": "^6.1.0",
"react-addons-test-utils": "^15.4.0",
"request-promise": "^4.1.1"
}
}