-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.27 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
{
"name": "book_trading_club_app",
"version": "1.0.0",
"description": "Book trading club app in fulfillment of learning project for FreeCodeCamp",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "webpack -d --watch",
"build": "webpack",
"serve": "node index.js",
"heroku-postbuild": "webpack --display-error-details"
},
"author": "Will G",
"license": "ISC",
"dependencies": {
"async": "^2.5.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"css-loader": "^0.28.2",
"dotenv": "^6.1.0",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"history": "^4.6.3",
"jsonwebtoken": "^7.4.1",
"mongodb": "^2.2.29",
"mongoose": "^4.11.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"style-loader": "^0.18.1",
"validator": "^8.0.0",
"webpack": "^2.6.0"
},
"devDependencies": {
"webpack-dev-server": "^2.4.5"
}
}