-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 826 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 826 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
25
26
27
28
29
30
31
32
33
34
{
"name": "madrasah-frontend",
"type": "module",
"private": true,
"workspaces": [
"apps/*",
"shared/*"
],
"scripts": {
"build": "turbo distribute && turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"check-types": "turbo run check-types",
"lint:fix": "turbo lint -- --fix",
"clean": "turbo clean && rm -rf node_modules .turbo dist",
"prepare": "husky",
"test": "turbo test",
"distribute": "turbo distribute"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@turbo/gen": "^2.5.6",
"esbuild": "^0.21.5",
"husky": "^9.1.7",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"turbo": "^2.5.6"
},
"packageManager": "npm@11.5.2",
"dependencies": {
"react-hook-form": "^7.64.0"
}
}