-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "book-trading-club",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"serve": "webpack-dev-server --host 0.0.0.0",
"start": "nodemon server.js",
"build-dev": "webpack",
"build": "NODE_ENV='production' webpack -p",
"deploy": "npm build && git push heroku master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/libeja/book-trading-club.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/libeja/book-trading-club/issues"
},
"homepage": "https://github.com/libeja/book-trading-club#readme",
"dependencies": {
"axios": "^0.16.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-session": "^1.15.2",
"google-books-search": "^0.3.1",
"mongoose": "^4.9.5",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-burger-menu": "^2.0.2",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}