-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.79 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
{
"name": "jblog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"linter": "node_modules/.bin/eslint \"./client/src\"",
"server": "node_modules/.bin/nodemon --watch server --exec babel-node -- server/index.js --config webpack.conf.babel.js --inline --hot --progress --colors",
"build": "cross-env NODE_ENV=production webpack -p --progress --config webpack.conf.babel.js",
"test": "node_modules/.bin/eslint \"./client/src\"",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config webpack.conf.babel.js --inline --hot --progress --colors",
"debug": "webpack-dev-server --watch --config webpack.conf.babel.js --inline --hot --progress --colors"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.16.2",
"mongoose": "^4.7.5",
"react": "^15.3.2",
"react-cookie": "^1.0.4",
"react-dom": "^15.3.2",
"react-redux": "^5.0.1",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"validator": "^6.2.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.5.0",
"nodemon": "^1.10.2",
"react-hot-loader": "^1.3.0",
"sass-loader": "^5.0.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-dev-server": "^2.3.0"
}
}