-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 904 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "study-notion",
"version": "0.1.0",
"description": "study-notion",
"type": "module",
"private": true,
"dependencies": {
"concurrently": "^8.2.2"
},
"scripts": {
"start:server": "cd backend && npm run dev",
"start:client": "cd frontend && npm run dev",
"dev": "concurrently -n \"server,client\" -c \"red,blue\" \"npm run start:server\" \"npm run start:client\"",
"format:server": "cd backend && npm run format",
"format:client": "cd frontend && npm run format",
"format": "concurrently -n \"server,client\" -c \"red,blue\" \"npm run format:server\" \"npm run format:client\"",
"test:server": "cd backend && npm run test",
"test:client": "cd frontend && npm run test",
"test": "concurrently -n \"server,client\" -c \"red,blue\" \"npm run test:server\" \"npm run test:client\""
}
}