-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "custom-expo-updates-server",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"update1": "sh ./scripts/publish.sh",
"update2": "NODE_NO_WARNINGS=1 ts-node tools/src/update.ts",
"postinstall": "prisma generate"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.501.0",
"@aws-sdk/s3-presigned-post": "^3.501.0",
"@aws-sdk/s3-request-presigner": "^3.504.0",
"@prisma/client": "5.8.1",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"form-data": "^4.0.0",
"lodash": "^4.17.19",
"mime": "^2.5.2",
"next": "^14.1.0",
"prisma": "^5.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rxjs": "^7.8.1",
"structured-headers": "^0.4.1"
},
"devDependencies": {
"@expo/config": "^7.0.3",
"@expo/multipart-body-parser": "^1.1.0",
"@types/bun": "^1.0.4",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.178",
"@types/mime": "^2.0.3",
"@types/node": "20.11.10",
"@types/react": "^18.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"prisma": {
"schema": "domain/schema.prisma"
}
}