-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.13 KB
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
38
39
40
41
42
43
44
45
46
47
{
"name": "ENTRYDSM-ADMISSION-2026",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"precommit:checks": "lint-staged && bun run check-types",
"prepush:checks": "bun run lint && bun run check-types && bun run build",
"prerebase:checks": "bun run lint && bun run check-types",
"postcheckout:checks": "bun run check-types",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"devDependencies": {
"debug": "^4.4.3",
"eslint": "^10.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"turbo": "^2.9.5",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.11",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/style": "^0.8.0",
"react-router": "^7.17.0"
}
}