-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.61 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
{
"name": "react-node-fullstack-boilerplate",
"version": "1.0.0",
"description": "React + Node full stack project boilerplate that's great, useful and easy to understand!",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "npm run build-client && npm run build-server",
"build-server": "npm run server-build-clean && npm run server-babel-build",
"server-build-clean": "rd dist /s /q && mkdir dist",
"server-babel-build": "babel -d dist server",
"build-client": "cd client && npm run build",
"dev-server": "cross-env NODE_ENV=development nodemon --exec babel-node server",
"dev-client": "cd client && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperUltraExtraordinaryDev/react-node-fullstack-boilerplate.git"
},
"keywords": [
"react",
"node",
"template",
"boilerplate",
"full-stack",
"babel",
"nodemon",
"windows"
],
"author": "Steven Kolden Fish",
"license": "ISC",
"bugs": {
"url": "https://github.com/SuperUltraExtraordinaryDev/react-node-fullstack-boilerplate/issues"
},
"homepage": "https://github.com/SuperUltraExtraordinaryDev/react-node-fullstack-boilerplate#readme",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"http-status": "^1.5.2",
"logger": "^0.0.1",
"path": "^0.12.7"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/node": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"concurrently": "^7.2.2",
"nodemon": "^2.0.16"
}
}