-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.47 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
{
"name": "checkmvp-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_OPTIONS='--inspect --trace-deprecation' next dev",
"build": "prisma generate --no-hints && next build",
"start": "next start",
"next-lint": "next lint --no-cache",
"eslint": "npx eslint . --ext .ts,.tsx,.js,.jsx",
"next-lint-fix": "next lint --fix",
"lint:prisma": "npx prisma validate",
"prettier": "npx prettier --check .",
"prepare": "if [ -d .git ]; then npx husky; fi",
"knip": "npx knip",
"lint": "npm run next-lint && npm run prettier && npm run knip",
"prisma:generate_client": "prisma generate",
"test": "dotenv -e .env.test -- npx prisma migrate deploy && jest --detectOpenHandles -i ./__tests__/",
"test:coverage": "dotenv -e .env.test -- npx prisma migrate deploy && jest --coverage --detectOpenHandles -i ./__tests__/",
"db:migrate": "prisma migrate deploy"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@react-pdf/renderer": "^4.1.4",
"@sentry/nextjs": "^8.37.1",
"@tailwindcss/forms": "^0.5.7",
"ioredis": "^5.4.1",
"next": "14.2.13",
"next-plausible": "^3.12.4",
"next-themes": "^0.4.3",
"openai": "^4.65.0",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.33.5",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/eslint-plugin-security": "^3.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-autofix": "^2.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest-extended": "^2.4.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unused-imports": "^4.1.3",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"knip": "^5.33.3",
"postcss": "^8.4.41",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.14",
"typescript": "^5",
"zod": "^3.23.8"
}
}