-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "turbocache",
"description": "A simple remote cache server for Turborepo",
"author": {
"name": "promer94",
"email": "[email protected]",
"url": "https://github.com/promer94"
},
"repository": {
"url": "https://github.com/promer94/turbocache"
},
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "prisma generate",
"build": "next build",
"start": "next start",
"lint": "next lint",
"online": "prisma generate && next build",
"bucket": "node -r dotenv/config scripts/s3.mjs"
},
"dependencies": {
"@aws-sdk/abort-controller": "^3.272.0",
"@aws-sdk/client-s3": "3.282.0",
"@aws-sdk/lib-storage": "3.282.0",
"@aws-sdk/s3-request-presigner": "3.282.0",
"@geist-ui/core": "2.3.8",
"@geist-ui/icons": "1.0.2",
"@next-auth/prisma-adapter": "1.0.5",
"@prisma/client": "4.11.0",
"@sindresorhus/is": "5.3.0",
"@vercel/analytics": "^0.1.11",
"consola": "2.15.3",
"next": "13.2.3",
"next-auth": "4.20.1",
"next-connect": "0.13.0",
"pino": "^8.11.0",
"pretty-bytes": "^6.1.0",
"prisma": "4.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "2.0.4"
},
"devDependencies": {
"@types/node": "18.14.6",
"@types/react": "18.0.28",
"autoprefixer": "10.4.13",
"dotenv": "16.0.3",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"pino-pretty": "9.4.0",
"postcss": "8.4.21",
"tailwindcss": "3.2.7",
"typescript": "4.9.5",
"vitest": "0.29.2"
}
}