-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.39 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.39 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"version": "2.2.0",
"author": {
"name": "Anton Fisher",
"email": "a.fschr@gmail.com",
"url": "http://antonfisher.com"
},
"description": "React boilerplate with ES2015, Express.js, and Webpack 3",
"license": "MIT",
"engines": {
"node": "8.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/antonfisher/react-express-webpack.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/server",
"start": "node build/server/index.js",
"heroku-postbuild": "npm run build",
"prebuild": "rimraf build",
"build": "npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production webpack -p --progress --config=config/webpack.config.prod.js",
"build:server": "copyfiles -a -u 1 src/server/**/**/* build",
"lint": "eslint --ignore-path .gitignore --ignore-pattern node_modules -- .",
"prettier": "prettier --ignore-path .gitignore --write './**/*.js'",
"test": "exit 1",
"release:patch": "npm run lint && npx standard-version -r patch && git push --follow-tags origin master",
"release:minor": "npm run lint && npx standard-version -r minor && git push --follow-tags origin master",
"release:major": "npm run lint && npx standard-version -r major && git push --follow-tags origin master"
},
"postcss": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-loader": "7.1.4",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-react": "6.24.1",
"babel-watch": "2.0.7",
"copyfiles": "2.0.0",
"cross-env": "5.1.4",
"css-loader": "0.28.10",
"eslint": "^4.18.2",
"eslint-config-prettier": "2.9.0",
"eslint-import-resolver-webpack": "0.8.4",
"eslint-loader": "^2.0.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-flowtype": "2.46.1",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-relay": "0.0.21",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"html-loader": "0.5.5",
"html-webpack-harddisk-plugin": "0.2.0",
"html-webpack-plugin": "3.0.6",
"node-sass": "^4.9.0",
"postcss-load-config": "1.2.0",
"postcss-loader": "2.1.1",
"prettier": "1.11.1",
"react-router": "^4.2.0",
"rimraf": "2.6.2",
"sass-loader": "6.0.7",
"style-loader": "0.20.3",
"uglifyjs-webpack-plugin": "1.2.3",
"webpack": "4.1.1",
"webpack-cli": "2.0.11",
"webpack-dev-middleware": "3.0.1",
"webpack-hot-middleware": "2.21.2",
"webpack-merge": "4.1.2"
},
"dependencies": {
"airbnb-browser-shims": "^2.1.0",
"axios": "^0.18.0",
"babel-polyfill": "6.26.0",
"body-parser": "1.18.2",
"compression": "1.7.2",
"dotenv": "^5.0.1",
"draft-js": "^0.10.5",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-fbjs": "^2.0.1",
"express": "4.16.2",
"highlight.js": "^9.12.0",
"immutable": "3.8.2",
"material-ui-next": "^1.0.0-beta.47",
"pg": "^7.4.3",
"prop-types": "^15.6.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-hot-loader": "4.0.0",
"react-mde": "^5.5.1",
"react-router-dom": "^4.2.2",
"react-textarea-autosize": "^6.1.0",
"remarkable": "^1.7.1",
"request": "2.83.0",
"sanitize.css": "5.0.0",
"showdown": "^1.8.6",
"winston": "^2.4.2"
}
}