-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 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
{
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:db-baseline": "cd db && npm run refresh && npm run seed",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && python src/main.py",
"format:frontend": "cd frontend && npm run format",
"format:backend": "cd backend && ./scripts/format.sh",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && ./scripts/lint.sh",
"test:backend": "cd backend && ./scripts/test.sh",
"test:backend:coverage": "cd backend && ./scripts/test-coverage.sh",
"test:frontend": "cd frontend && npm run test",
"test:frontend:coverage": "cd frontend && npm run test:coverage",
"prepare": "husky install",
"clean": "node clean.js"
},
"dependencies": {
"concurrently": "^6.5.1",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"rimraf": "^5.0.5"
}
}