-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.25 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.25 KB
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
{
"name": "resttonext",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf .next",
"cleanbuild": "pnpm run clean && pnpm run build",
"seed": "ts-node prisma/seed",
"seedSpirit": "ts-node prisma/seedSpirit",
"seedUsers": "ts-node prisma/userSeed",
"deploy": "vercel --prod"
},
"pnpm": {
"version": "7.0.0"
},
"dependencies": {
"@eslint/config-array": "^0.17.1",
"@eslint/object-schema": "^2.1.4",
"@prisma/client": "^5.19.1",
"@tailwindcss/forms": "^0.5.9",
"@types/leaflet": "^1.9.12",
"@vercel/postgres": "^0.9.0",
"autoprefixer": "^10.4.20",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"next": "^14.2.8",
"next-auth": "5.0.0-beta.20",
"pg": "^8.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1",
"sharp": "^0.33.5",
"type-fest": "^4.26.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prisma": "^5.19.1",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jest-environment-jsdom",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx",
"json",
"node"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"\\.(css|scss)$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"<rootDir>/src/__tests__/setupTests.ts"
]
}
}