forked from doctor-ew/SCI-fe-dev-challenge-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 852 Bytes
/
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
{
"name": "nextjs-card-prototype",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "jest",
"pretest": "pnpm run lint",
"predev": "pnpm run test",
"prebuild": "pnpm run test",
"prestart": "pnpm run test",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "15.0.1",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.1",
"jest": "^29.7.0",
"postcss": "^8",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}