-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 994 Bytes
/
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
32
33
34
35
36
37
{
"name": "cs3219-ay2425s1-project-g31",
"version": "0.1.0",
"description": "CS3219 Project (PeerPrep) - AY2425S1 Group: G31",
"author": "CS3219 AY2024S1 Group 31",
"license": "MIT",
"workspaces": [
"frontend",
"backend/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"lint-staged": "lint-staged",
"prepare": "husky || true"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "^2.1.2"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
},
"packageManager": "npm@10.8.2+"
}