forked from keithweaver/MERN-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.79 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
{
"name": "MERN-boilerplate",
"version": "1.0.0",
"description": "MERN stack project boilerplate",
"author": "Eugene Cheung",
"repository": {
"type": "git",
"url": "git+https://github.com/arkon/MERN-boilerplate.git"
},
"license": "MIT",
"private": true,
"scripts": {
"start": "webpack -p --progress --profile --colors && node server",
"start:dev": "node server",
"lint": "eslint client server"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.17.2",
"connect-history-api-fallback": "^1.3.0",
"express": "^4.15.4",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"mongoose": "^4.11.7",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"prop-types": "^15.6.1",
"react": "^15.6.1",
"react-bootstrap": "^0.32.1",
"react-bootstrap-dialog": "^0.9.4",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-table": "^6.8.0",
"sanitize-html": "^1.18.2"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.5",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-ava": "^4.5.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"postcss-assets": "^5.0.0",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0"
}
}