-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 831 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
{
"name": "how-to-react-ui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install:backend": "npm install --prefix backend",
"install:frontend": "npm install --prefix frontend",
"install:all": "npm run install:backend && npm run install:frontend",
"dev:backend": "npm run dev --prefix backend",
"dev:frontend": "npm run dev --prefix frontend",
"start": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"backend:migrate": "npm run migrate --prefix backend",
"backend:seed": "npm run seed --prefix backend",
"backend:setup-db": "npm run setup-db --prefix backend"
},
"keywords": [
"React",
"TypeScript",
"PostgreSQL"
],
"author": "Joseph Lander",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2"
}
}