This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
57 lines (57 loc) · 1.82 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
{
"name": "badge42",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "prisma generate --schema=./db/schema.prisma",
"db:migrate": "prisma migrate dev --schema=./db/schema.prisma --skip-seed",
"db:reset": "prisma migrate reset --schema=./db/schema.prisma --skip-seed",
"db:push": "prisma db push --schema=./db/schema.prisma",
"db:seed": "npx prisma db seed",
"db:studio": "prisma studio --schema=./db/schema.prisma",
"now-build": "yarn db:generate && next build",
"assets:download": "ts-node --compiler-options {\"module\":\"CommonJS\"} scripts/downloadAssets.ts"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} db/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@icons-pack/react-simple-icons": "^4.6.1",
"@prisma/client": "^3.11.0",
"axios": "^0.26.0",
"lodash-es": "^4.17.21",
"next": "12.1.0",
"next-auth": "^4.2.1",
"node-cache": "^5.1.2",
"p-queue": "6.6.2",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"string-pixel-width": "^1.10.0"
},
"devDependencies": {
"@rvxlab/tailwind-plugin-ios-full-height": "^1.1.0",
"@types/lodash-es": "^4.17.6",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^17.0.13",
"@types/sharp": "^0.29.5",
"@types/string-pixel-width": "^1.7.2",
"autoprefixer": "^10.4.2",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"postcss": "^8.4.7",
"prisma": "^3.11.0",
"sharp": "^0.30.2",
"tailwindcss": "^3.0.23",
"ts-node": "^10.6.0",
"typescript": "4.6.2"
}
}