-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.29 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
{
"name": "optripay",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "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": "cross-env ANALYZE=true npm run-script build",
"test:db:prepare": "dotenv -f .env.test -- npx prisma migrate reset --force --skip-seed",
"test": "dotenv -f .env.test -- npx prisma migrate deploy && jest -i",
"prisma:generate_client": "prisma generate",
"db:migrate": "prisma migrate deploy"
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@next/bundle-analyzer": "13.3.4",
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "^4.13.0",
"@sentry/nextjs": "^7.50.0",
"@types/node": "20.1.0",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"cross-env": "^7.0.3",
"eslint": "8.40.0",
"eslint-config-next": "13.4.1",
"mobile-detect": "^1.4.5",
"next": "13.4.1",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.5",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.4",
"typescript": "5.0.4",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "13.4.1",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-next": "13.3.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.27.5",
"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",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"node-mocks-http": "^1.11.0",
"prettier": "^2.8.4",
"prisma": "^4.13.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}