-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 917 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
{
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "cd frontend && npm start",
"dev:backend": "cd backend && gradle bootRun",
"dev:db-baseline": "cd db && npm run refresh && npm run seed",
"format:frontend": "cd frontend && npm run format",
"format:backend": "cd backend && gradle format",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && gradle lint",
"test:backend": "cd backend && gradle test",
"test:frontend": "cd frontend && npm test",
"test:frontend:ci": "cd frontend && npm run test:ci",
"prepare": "husky install",
"clean": "node clean.js"
},
"dependencies": {
"concurrently": "^10.0.3",
"husky": "^9.1.7",
"prettier": "^3.1.1",
"rimraf": "^6.1.3"
}
}