-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "gitgoing",
"version": "1.0.0",
"description": "collaborative github editor",
"main": "index.js",
"scripts": {
"start": "npm build && node dist/server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack & babel src/server -d dist/server",
"dev": "webpack --watch & nodemon src/server/index.js && fg"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.9.0",
"enzyme": "^2.3.0",
"file-loader": "^0.8.5",
"should": "^9.0.2",
"webpack": "^1.13.1"
},
"dependencies": {
"atob": "^2.0.3",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"brace": "^0.8.0",
"btoa": "^1.1.2",
"connect-redis": "^3.1.0",
"cookie-parser": "^1.4.3",
"ejs": "^2.4.2",
"es6-promise": "^3.2.1",
"express": "^4.13.4",
"express-session": "^1.13.0",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.0.0",
"materialize-css": "^0.97.6",
"mocha": "^2.5.3",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"react": "^15.1.0",
"react-ace": "^3.4.1",
"react-dom": "^15.1.0",
"react-modal": "^1.4.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"redis": "^2.6.2",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.6",
"underscore": "^1.8.3"
}
}