-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.31 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
{
"name": "partneriq",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"typecheck": "next typegen && tsc --noEmit",
"typecheck:legacy": "next typegen && tsc6 --noEmit",
"postinstall": "node -e \"const fs=require('fs'),p='node_modules/typescript/package.json';if(fs.existsSync(p)){const j=JSON.parse(fs.readFileSync(p,'utf8'));if(!j.bin||!j.bin.tsc){j.bin=j.bin||{};j.bin.tsc='./bin/tsc';fs.writeFileSync(p,JSON.stringify(j,null,2));const b='node_modules/typescript/bin/tsc';if(!fs.existsSync(b)){fs.writeFileSync(b,'#!/usr/bin/env node\\nrequire(\\'../../@typescript/native/bin/tsc\\');\\n',{mode:0o755});}}}\""
},
"dependencies": {
"@react-pdf/renderer": "^4.8.0",
"@supabase/supabase-js": "^2.112.3",
"next": "16.3.2",
"openai": "^7.5.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.43",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript/native": "npm:typescript@7.0.2",
"eslint": "^9",
"eslint-config-next": "16.3.2",
"tailwindcss": "^4",
"typescript": "npm:@typescript/typescript6@6.0.2",
"vitest": "^4.1.11"
}
}