-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.04 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
{
"name": "react-node-challenge",
"version": "1.0.0",
"main": "index.js",
"private": true,
"repository": "[email protected]:adrianomonteiroweb/react-node-challenge.git",
"author": "Adriano monteiro <[email protected]>",
"license": "MIT",
"scripts": {
"start": "yarn workspaces foreach run start & sleep 5 && yarn workspace frontend start",
"start:server": "yarn workspace backend start",
"start:server-dev": "yarn workspace backend dev",
"start:client": "yarn workspace frontend start",
"db:create": "yarn workspace backend db:create",
"db:migrate": "yarn workspace backend db:migrate",
"db:drop": "yarn workspace backend db:drop",
"test": "jest --runInBand --detectOpenHandles --forceExit --verbose",
"test:dev": "DEV=true npm run jest -- --runInBand --detectOpenHandles --forceExit --verbose"
},
"devDependencies": {
"dotenv": "^16.0.1",
"frisby": "^2.1.3",
"jest": "^29.0.0",
"sequelize-cli": "^6.4.1",
"shelljs": "^0.8.5"
},
"workspaces": [
"backend",
"frontend"
]
}