This repository has been archived by the owner on Dec 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.8 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
{
"name": "react-redux-express-template",
"version": "1.0.0",
"description": "A boilerplate for developing Express app with React&Redux",
"main": "index.js",
"scripts": {
"heroku-postbuild": "yarn run build",
"start": "nodemon server.js --watch server.js",
"build": "yarn run build:client && yarn run build:server",
"build:client": "NODE_ENV=production webpack --config=webpack.config.prod.js --progress --colors",
"build:server": "babel server.js -o bundle-server.js",
"lint": "eslint public",
"format": "prettier-eslint --write \"public/**/*.js\" server.js --ignore **/bundle.js",
"serve": "node bundle-server.js",
"test": "echo \"No test specified\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"express": "^4.16.4",
"node-sass": "^4.11.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.8.4",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.41.2",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.9.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"eslint": "5.15.3",
"eslint-config-airbnb": "17.1.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.12.4",
"nodemon": "1.18.11",
"prettier-eslint-cli": "4.7.1"
}
}