-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.02 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 4.02 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
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
{
"private": true,
"packageManager": "pnpm@10.17.1",
"scripts": {
"dev": "pnpm run juno:start > /dev/null & pnpm run db:start & next dev",
"build": "next build",
"build:netlify": "NEXT_PUBLIC_BRANCH_NAME=$BRANCH NEXT_PUBLIC_BASE_URL=$DEPLOY_PRIME_URL NEXT_PUBLIC_PROD_URL=$URL pnpm run build",
"start": "next start",
"test": "pnpm run db:test:start && vitest run && pnpm run db:test:stop",
"test:coverage": "pnpm run db:test:start && vitest run --coverage && pnpm run db:test:stop",
"test:e2e": "pnpm exec playwright install --with-deps && DB_URL=postgres://test:root@localhost:5433/postgres pnpm exec playwright test --pass-with-no-tests",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"prepare": "husky",
"db:create": "docker pull postgres && docker run --name servicestart-db -e POSTGRES_PASSWORD=root -e POSTGRES_USER=dev -d -p 5432:5432 postgres",
"db:start": "docker container start servicestart-db",
"db:stop": "docker container stop servicestart-db; docker container stop servicestart-test-db",
"db:test:create": "docker pull postgres && docker run --name servicestart-test-db -e POSTGRES_PASSWORD=root -e POSTGRES_USER=test -d -p 5433:5432 postgres",
"db:test:migrate": "DB_URL=postgres://test:root@localhost:5433/postgres drizzle-kit migrate --ignore-conflicts",
"db:test:start": "docker container start servicestart-test-db",
"db:test:stop": "docker container stop servicestart-test-db",
"db:generate": "drizzle-kit generate --ignore-conflicts",
"db:migrate": "drizzle-kit migrate --ignore-conflicts",
"db:seed": "tsx scripts/seed.ts",
"db:check": "drizzle-kit check --ignore-conflicts",
"db:view": "drizzle-kit studio",
"setupOrg": "tsx scripts/setupOrg.ts",
"setupJunoFileStorage": "tsx scripts/setupJunoFileStorage.ts",
"juno:setup": "tsx scripts/setupJuno.ts",
"juno:start": "cd juno && pnpm start:dev:live-all",
"juno:stop": "docker compose -f juno/docker-compose-dev.yml stop"
},
"pnpm": {
"overrides": {
"kysely": "^0.28.14",
"rollup": "^4.59.0",
"minimatch": "^3.1.3",
"undici": "^7.24.0",
"flatted": "^3.4.0",
"ajv": "^6.14.0",
"picomatch": "^4.0.4",
"defu": "^6.1.5",
"yaml": "^1.10.3"
}
},
"dependencies": {
"@dnd-kit/react": "^0.3.2",
"@hono/zod-validator": "^0.7.6",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/themes": "^3.3.0",
"@tailwindcss/cli": "^4.2.2",
"better-auth": "^1.4.18",
"clsx": "^2.1.1",
"dotenv": "^17.4.1",
"drizzle-orm": "1.0.0-beta.22-41a7d21",
"hono": "^4.12.12",
"juno-sdk": "^0.0.11",
"next": "latest",
"pg": "^8.20.0",
"postcss": "^8.5.9",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-select": "^5.10.2",
"react-use": "^17.6.0",
"server-only": "^0.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.2",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "4.1.2",
"@vitest/eslint-plugin": "^1.6.15",
"bog-cli": "^1.0.1",
"drizzle-kit": "1.0.0-beta.22-41a7d21",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"prettier": "3.8.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.8",
"vitest": "^4.1.2"
},
"lint-staged": {
"**/*": "pnpm run format"
}
}