-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "futusho",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run wagmi && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --no-cache && npx eslint . --ext .ts,.tsx,.js,.jsx && npx prettier --check .",
"lint:prisma": "npx prisma validate",
"lint-fix": "next lint --fix",
"analyze": "ANALYZE=true npm run-script build",
"test:db:prepare": "dotenv -e .env.test -- npx prisma migrate reset --force --skip-seed",
"test": "dotenv -e .env.test -- npx prisma migrate deploy && jest --detectOpenHandles -i ./__tests__/",
"prisma:generate_client": "prisma generate",
"db:migrate": "prisma migrate deploy",
"wagmi": "wagmi generate"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@next-auth/prisma-adapter": "^1.0.6",
"@next/bundle-analyzer": "13.5.4",
"@prisma/client": "^5.6.0",
"@sentry/nextjs": "^7.83.0",
"@types/node": "18.15.11",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.15",
"@wagmi/core": "^1.4.2",
"mime": "^3.0.0",
"mobile-detect": "^1.4.5",
"multer": "^1.4.5-lts.1",
"next": "^13.5.1",
"next-auth": "^4.24.5",
"next-connect": "^1.0.0",
"node-fetch": "^3.3.1",
"nodemailer": "^6.9.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-use": "^17.4.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.4",
"sharp": "^0.32.6",
"slugify": "^1.6.6",
"uuid": "^8.3.2",
"viem": "^1.12.2",
"wagmi": "^1.4.2",
"zod": "^3.22.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "13.3.1",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.1",
"@types/mime": "^3.0.4",
"@types/multer": "^1.4.7",
"@types/node": "^18.16.3",
"@types/node-fetch": "^2.6.4",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.8",
"@wagmi/cli": "^1.5.0",
"cookie-parser": "^1.4.6",
"dotenv-cli": "^7.3.0",
"eslint": "^8.40.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-extended": "^4.0.2",
"node-mocks-http": "^1.13.0",
"prettier": "^2.8.4",
"prisma": "^5.4.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}