-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 839 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
{
"name": "teddies-platform",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format:check": "turbo run format:check",
"format:write": "turbo run format:write",
"typecheck:frontend": "turbo run typecheck:frontend",
"typecheck:backend": "turbo run typecheck:backend",
"test": "turbo run test",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"turbo": "latest"
},
"engines": {
"node": ">=18"
}
}