-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.47 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
{
"name": "express_react",
"version": "0.0.1",
"description": "express-react-fullstack",
"main": "index.js",
"scripts": {
"test": "mocha",
"clean": "rimraf dist",
"build": "NODE_ENV=production npm run clean && webpack -p",
"start": "concurrently --kill-others \"webpack-dev-server\" \"nodemon server\""
},
"keywords": [
"react",
"express",
"mongo"
],
"author": "German Hernandez del Rosario",
"license": "MIT",
"dependencies": {
"body-parser": "^1.16.0",
"bootstrap": "^3.3.7",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"helmet": "^3.4.0",
"jquery": "^3.1.1",
"method-override": "^2.3.7",
"mongoose": "^4.7.8",
"morgan": "^1.7.0",
"react": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.1",
"react-router": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.10",
"babel-preset-env": "^1.1.4",
"babel-preset-react": "^6.16.0",
"concurrently": "^3.1.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"mocha": "^3.2.0",
"node-sass": "^4.3.0",
"nodemon": "^1.11.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-dev-server": "^2.2.0-rc.0"
}
}