forked from SkidGod4444/plura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "plura",
"private": true,
"author": {
"name": "saidevdhal",
"url": "https://twitter.com/SaidevDhal"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run db:generate && turbo build",
"build:www": "turbo --filter=plura-www build",
"build:app": "turbo --filter=plura-app build",
"build:api": "turbo --filter=plura-api build",
"dev": "turbo run dev --parallel",
"dev:www": "turbo --filter=plura-www dev",
"dev:app": "turbo --filter=plura-app dev",
"dev:api": "turbo --filter=plura-api dev",
"lint": "turbo run lint --force",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test --force",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check"
},
"devDependencies": {
"@repo/typescript-config": "workspace:*",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/supertest": "^6.0.2",
"prettier": "^3.2.5",
"turbo": "^2.2.3",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"dependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"class-variance-authority": "^0.7.0",
"eslint": "^8",
"eslint-config-next": "15.0.2",
"hono": "^4.6.9",
"next": "15.0.2",
"next-auth": "5.0.0-beta.25",
"postcss": "^8",
"posthog-js": "^1.184.1",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^2.1.4"
}
}