-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1.01 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": "repair-reports",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"back-install": "cd ./backend/ && npm install",
"client-install": "cd ./client/ && npm install",
"build-client": "cd ./client/ && npm run build",
"start": "cd ./backend/ && npm run start",
"install": "npm run copy-env && concurrently 'npm:back-install' 'npm:client-install' ",
"build": "npm run build-client && npm run client-cleanup",
"dev": "concurrently 'npm:dev-backend' 'npm:dev-client'",
"dev-backend": "cd ./backend/ && npm run dev",
"dev-client": "cd ./client/ && npm run dev",
"copy-env": "node copyfile.js",
"client-test": "cd ./client/ && npm run test",
"backend-test": "cd ./backend/ && npm run test",
"test": "concurrently 'npm:client-test' 'backend-test'",
"client-cleanup": "node cleanupClient.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^8.2.2",
"dotenv": "^16.4.3"
}
}