-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1021 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1021 Bytes
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
{
"name": "react-node-template",
"version": "1.0.0",
"description": "Template Project with ReactJS and NodeJS",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node src/server/server.js"
},
"repository": {
"type": "git",
"url": "git"
},
"keywords": [
"reactjs",
"nodejs"
],
"author": "Alejandro Herrera",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.17.5",
"sass-loader": "^7.0.2",
"webpack": "^4.10.2",
"webpack-dev-middleware": "^3.1.3",
"webpack-livereload-plugin": "^2.1.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-scripts": "^1.1.4",
"url-loader": "^1.0.1"
}
}