-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "react-nodejs-boilerplate",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start:dev": "nodemon server.js",
"ui": "cd ui && npm start",
"dev": "concurrently \"npm run start\" \"npm run ui\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix ui && npm run build --prefix ui"
},
"proxy": "http://localhost:5000",
"repository": {
"type": "git",
"url": "git+https://github.com/adityabisoi/react-nodejs-boilerplate.git"
},
"author": "Aditya Bisoi",
"license": "MIT",
"bugs": {
"url": "https://github.com/adityabisoi/react-nodejs-boilerplate/issues"
},
"homepage": "https://github.com/adityabisoi/react-nodejs-boilerplate#readme",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0",
"react-icons": "^4.3.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}