forked from mariasratbags/gitbud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "gitbud",
"version": "1.0.0",
"description": "An application to help programmers begin working on open source projects.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack-dev-server": "webpack-dev-server --progress --hot --inline",
"dev": "webpack -w",
"postInstall": "webpack -p",
"start": "nodemon server.js -i client/ -i dist/",
"seed": "node server/db/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cranebaes/gitbud.git"
},
"author": "haque-kim-ngo-warner-medley",
"license": "ISC",
"bugs": {
"url": "https://github.com/cranebaes/gitbud/issues"
},
"homepage": "https://github.com/cranebaes/gitbud#readme",
"devDependencies": {
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.7.1",
"webpack-hot-middleware": "^2.18.2"
},
"dependencies": {
"axios": "^0.16.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-session": "^1.15.5",
"lodash": "^4.17.4",
"material-ui": "^0.19.0",
"neo4j-driver": "^1.4.0",
"passport": "^0.4.0",
"passport-github2": "^0.1.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"webpack": "^3.5.3"
}
}