forked from Oasis-Company/OasisBio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.62 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
{
"name": "oasisbio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "node -e \"const fs = require('fs'); const path = '.next/cache'; if (fs.existsSync(path)) { fs.rmSync(path, { recursive: true, force: true }); }\"",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1016.0",
"@aws-sdk/s3-request-presigner": "^3.1016.0",
"@prisma/client": "^6.19.1",
"@supabase/auth-helpers-nextjs": "^0.15.0",
"@supabase/supabase-js": "^2.99.1",
"@types/archiver": "^7.0.0",
"@types/unzipper": "^0.10.11",
"archiver": "^7.0.1",
"bcryptjs": "^3.0.3",
"gray-matter": "^4.0.3",
"lucide-react": "^0.577.0",
"next": "14.1.4",
"prisma": "^6.19.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^10.1.0",
"server-only": "^0.0.1",
"three": "^0.183.2",
"three-stdlib": "^2.36.1",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.1.6",
"@types/node": "20.11.30",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"@types/three": "^0.183.1",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"autoprefixer": "10.4.19",
"dotenv": "^17.3.1",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"null-loader": "^4.0.1",
"postcss": "8.4.38",
"tailwindcss": "3.4.3",
"typescript": "5.4.3",
"webpack-node-externals": "^3.0.0"
}
}