-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.43 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
{
"name": "insightstudio",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "node server.js",
"lint": "eslint . --ext .ts,.tsx",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:deploy": "npx tsx scripts/deploy-schema.ts",
"db:deploy:all": "npx tsx scripts/deploy-schema.ts all",
"db:deploy:single": "npx tsx scripts/deploy-schema.ts single",
"db:deploy:dry-run": "npx tsx scripts/deploy-schema.ts all --dry-run",
"db:rollback": "npx tsx scripts/deploy-schema.ts rollback",
"db:resolve": "npx tsx scripts/deploy-schema.ts resolve",
"theme:add-weststack": "npx tsx scripts/add-weststack-theme.ts",
"e2e:seed": "npx tsx scripts/seed-e2e-users.ts",
"e2e:test": "E2E_TESTING=true NEXT_PUBLIC_E2E_TESTING=true npx playwright test",
"e2e:ui": "E2E_TESTING=true NEXT_PUBLIC_E2E_TESTING=true npx playwright test --ui"
},
"engines": {
"node": ">=22.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@azure/functions": "^4.9.0",
"@azure/msal-browser": "^4.26.1",
"@azure/msal-react": "^3.0.21",
"@azure/openai": "^2.0.0",
"@azure/search-documents": "^12.2.0",
"@azure/storage-blob": "^12.29.1",
"@prisma/adapter-mssql": "^7.1.0",
"@prisma/client": "^7.1.0",
"@tabler/icons-react": "^3.35.0",
"@tanstack/react-query": "^5.90.7",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"axios": "^1.13.2",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"mssql": "^11.0.1",
"next": "^16.0.10",
"next-auth": "^4.24.13",
"openai": "^6.8.1",
"prisma": "^7.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"rss-parser": "^3.13.0",
"typescript": "^5.9.3",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.1.17",
"@types/mssql": "^9.1.4",
"autoprefixer": "^10.4.21",
"baseline-browser-mapping": "^2.10.25",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.10",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17"
}
}