forked from spikelu2016/EmoryCourseReview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.43 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-node-starter",
"version": "1.0.0",
"description": "an example for deploying a React + NodeJS app to Heroku",
"main": "server.js",
"scripts": {
"build": "webpack --config webpack.prod.config.js",
"dev": "concurrently -k \"npm run frontend\" \"npm run backend\"",
"frontend": "webpack -d --watch",
"backend": "nodemon server.js",
"start": "npm run build && NODE_ENV=production node server.js",
"test": "mocha --compilers js:babel-core/register ./test/**/*.js --require ignore-styles"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^2.5.0",
"axios": "^0.16.2",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"css-loader": "^0.28.0",
"ejs": "^2.5.7",
"email-verification": "^0.4.6",
"enzyme": "^2.8.1",
"expect": "^1.20.2",
"express": "^4.15.2",
"express-session": "^1.15.5",
"json-loader": "^0.5.7",
"mocha": "^3.2.0",
"mongoose": "^4.11.12",
"mongoose-deep-populate": "^3.0.0",
"mongoose-keywords": "^0.3.2",
"morgan": "^1.9.0",
"node-sass": "^4.5.2",
"nodemailer": "^4.1.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"prop-types": "^15.5.8",
"querymen": "^2.1.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"react-router-dom": "^4.2.2",
"react-stars": "^2.2.5",
"redux": "^3.7.2",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"redux-persist": "^4.10.2",
"sass-loader": "^6.0.3",
"session-mongoose": "^0.5.2",
"style-loader": "^0.16.1",
"webpack": "^2.3.3",
"winston": "^2.4.0"
},
"devDependencies": {
"babel-eslint": "^7.2.2",
"concurrently": "^3.5.0",
"eslint": "^3.19.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^3.1.0",
"ignore-styles": "^5.0.1",
"nodemon": "^1.11.0",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.18.0"
}
}