-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "sopt-makers-frontend",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"apps/*/packages/*",
"packages/*"
]
},
"scripts": {
"build": "turbo run build",
"build:crew": "turbo run build --filter=crew",
"build:playground": "turbo run build --filter=playground",
"dev": "turbo run dev",
"dev:crew": "turbo run dev --filter=crew",
"dev:playground": "turbo run dev --filter=playground",
"format": "turbo run format",
"lint": "turbo run lint",
"lint:fix": "turbo lint -- --fix",
"sort": "yarn dlx sort-package-json '{apps,packages}/*/package.json' package.json",
"stylelint": "turbo run stylelint",
"test:ci": "turbo run test:ci",
"typecheck": "turbo run typecheck",
"update-mds": "yarn up @sopt-makers/colors@latest @sopt-makers/fonts@latest @sopt-makers/playground-common@latest @sopt-makers/ui@latest @sopt-makers/icons@latest"
},
"resolutions": {
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"react-hook-form": "7.43.9",
"sharp": "0.33.5",
"stylelint-order": "6.0.4",
"zod": "3.25.76"
},
"dependencies": {
"axios": "^1.1.3",
"dayjs": "^1.11.6",
"immer": "^10.0.4",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"zod": "^3.20.6"
},
"devDependencies": {
"@types/node": "18.8.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"eslint": "^8.57.1",
"lint-staged": "^15.0.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"storybook": "^7.6.20",
"turbo": "^1.12.0",
"typescript": "^4.9.5",
"wrangler": "^3.0.0"
},
"packageManager": "yarn@4.1.1",
"engines": {
"node": ">=20.0.0"
}
}