-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "mern-simplesetup",
"version": "1.0.0",
"description": "A quick check for your MERN stack installation",
"author": "Shama Hoque",
"license": "MIT",
"keywords": [
"react",
"node",
"express",
"mongodb",
"mern"
],
"repository": {
"type": "git",
"url": "https://github.com/shamahoque/mern-simplesetup.git"
},
"homepage": "https://github.com/shamahoque/mern-simplesetup",
"main": "template.js",
"scripts": {
"development": "nodemon",
"build": "webpack --config webpack.config.client.production.js && webpack --mode=production --config webpack.config.server.js",
"start": "NODE_ENV=production node ./dist/server.generated.js"
},
"engines": {
"node": "8.11.1",
"npm": "5.8.0"
},
"dependencies": {
"express": "^4.16.3",
"mongodb": "^3.0.7",
"react": "^16.3.2",
"react-dom": "^16.3.3",
"react-hot-loader": "^4.1.2"
},
"devDependencies": {
"babel-core": "^6.26.2",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"nodemon": "^1.17.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-middleware": "^3.1.2",
"webpack-hot-middleware": "^2.22.1",
"webpack-node-externals": "^1.7.2"
}
}