-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.73 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "workspace",
"private": true,
"version": "1.0.0",
"description": "Workspace for multiple applications and shared packages.",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"test": "pnpm run packages:test",
"lint": "eslint",
"mobile": "pnpm --filter 'mobile' start",
"web": "pnpm --filter 'web' dev",
"web:dev": "node ./concurrently-web.js",
"packages:build": "pnpm --filter './packages/**' build",
"packages:watch": "pnpm --filter './packages/**' watch",
"packages:test": "pnpm --filter './packages/**' test",
"api:build": "pnpm --filter '@-/api' build",
"api:watch": "pnpm --filter '@-/api' watch",
"api:watch:lib": "pnpm --filter '@-/api' watch:lib",
"api:watch:codegen": "pnpm --filter '@-/api' watch:codegen",
"db:build": "pnpm --filter '@-/db' build",
"db:watch": "pnpm --filter '@-/db' watch",
"db:test": "pnpm --filter '@-/db' test",
"db:migrate": "pnpm --filter '@-/db' migrate",
"db:studio": "pnpm --filter '@-/db' studio",
"logic:build": "pnpm --filter '@-/logic' build",
"logic:watch": "pnpm --filter '@-/logic' watch",
"ui:build": "pnpm --filter '@-/ui' build",
"ui:watch": "pnpm --filter '@-/ui' watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [],
"overrides": {
"semver": "7.5.2"
},
"devDependencies": {
"@apollo/client": "^3.10.4",
"@apollo/server": "^4.10.4",
"@babel/core": "^7.24.6",
"@do-ob/core": "^1.1.0",
"@do-ob/eslint-config": "^2.4.0",
"@do-ob/ts-config": "^2.0.0",
"@do-ob/ui": "^1.0.2",
"@do-ob/vite-lib-config": "^3.0.1",
"@expo/metro-runtime": "^3.2.1",
"@expo/webpack-config": "^19.0.1",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript": "^4.0.7",
"@graphql-codegen/typescript-resolvers": "^4.1.0",
"@heroicons/react": "^2.1.3",
"@nextui-org/react": "^2.4.1",
"@parcel/watcher": "^2.4.1",
"@storybook/addon-a11y": "next",
"@storybook/addon-essentials": "next",
"@storybook/addon-interactions": "next",
"@storybook/addon-links": "next",
"@storybook/addon-onboarding": "next",
"@storybook/addon-themes": "next",
"@storybook/blocks": "next",
"@storybook/nextjs": "next",
"@storybook/react": "next",
"@storybook/test": "next",
"@tailwindcss/typography": "^0.5.13",
"@types/node": "^20.12.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"ajv": "^8.14.0",
"autoprefixer": "^10.4.19",
"babel-plugin-module-resolver": "^5.0.2",
"concurrently": "^8.2.2",
"cssnano": "^7.0.2",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.22.1",
"drizzle-orm": "^0.31.0",
"eslint": "^9.3.0",
"expo": "^51.0.9",
"expo-constants": "^16.0.2",
"expo-linking": "^6.3.1",
"expo-router": "^3.5.14",
"expo-status-bar": "^1.12.1",
"expo-system-ui": "^3.0.4",
"framer-motion": "^11.2.10",
"glob": "^10.4.1",
"graphql": "^16.8.1",
"nativewind": "^4.0.36",
"next": "^14.2.4",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-native": "0.74.0-rc.9",
"react-native-css-interop": "^0.0.36",
"react-native-reanimated": "^3.11.0",
"react-native-safe-area-context": "^4.10.3",
"react-native-screens": "^3.31.1",
"react-native-web": "^0.19.12",
"storybook": "next",
"tailwindcss": "^3.4.3",
"ts-json-schema-generator": "^2.2.0",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vitest": "^1.6.0",
"webpack": "^5.91.0"
}
}