-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.22 KB
/
package.json
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": "tiki-front",
"private": true,
"scripts": {
"lint": "pnpm --filter client lint",
"check": "concurrently \"pnpm lint\" \"pnpm typecheck\"",
"build-storybook": "pnpm --filter @tiki/ui build && pnpm --filter @tiki/icon build && pnpm --filter client build-storybook",
"client": "pnpm --filter client",
"landing": "pnpm --filter landing",
"tsconfig": "pnpm --filter @tiki/tsconfig",
"icon": "pnpm --filter @tiki/icon",
"ui": "pnpm --filter @tiki/ui",
"utils": "pnpm --filter @tiki/utils",
"typecheck": "tsc --noEmit"
},
"workspaces": [
"apps/*",
"packages/*"
],
"root": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"date-fns": "^4.1.0",
"lottie-react": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"concurrently": "^9.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}