-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "codeit-resources",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"lint:fix": "turbo run lint -- --fix",
"storybook:web": "pnpm --filter=web storybook",
"chromatic:web": "pnpm --filter=web chromatic"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "^2.1.3",
"typescript": "^5.5.3"
},
"packageManager": "pnpm@8.15.6",
"engines": {
"node": ">=18"
},
"lint-staged": {
"apps/**/*.{ts,js,tsx,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"typescript": "5.5.3"
}
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.670.0",
"@aws-sdk/client-ses": "^3.679.0",
"@hookform/resolvers": "^3.9.0",
"dayjs": "^1.11.13",
"jotai": "^2.10.1"
}
}