-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "plant-points",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\""
},
"dependencies": {
"@clerk/nextjs": "^4.23.5",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@prisma/client": "^5.3.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@vitejs/plugin-react-swc": "^3.4.0",
"autoprefixer": "10.4.15",
"eslint": "8.49.0",
"eslint-config-next": "13.4.19",
"jsdom": "^22.1.0",
"next": "13.4.19",
"next-superjson-plugin": "^0.5.9",
"postcss": "8.4.29",
"react": "18.2.0",
"react-datepicker": "^4.18.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.47.0",
"react-select": "^5.7.4",
"superjson": "^1.13.3",
"tailwindcss": "3.3.3",
"vitest": "^0.34.6"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@types/react-datepicker": "^4.15.1",
"prettier": "^3.0.3",
"prisma": "^5.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest-fetch-mock": "^0.2.2"
}
}