-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 758 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
{
"name": "node-react-app",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"client": "cd client && npm start",
"server": "cd server && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server/index.js",
"build": "concurrently \"cd client && npm install && npm run build\" \"cd server && npm install && npm run build\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"concurrently": "^6.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"react": "^17.0.2"
}
}