forked from carcutter/FrontendChallenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "frontend-challenge",
"version": "0.0.1",
"private": true,
"engines": {
"npm": ">=10.1.0 <10.3.0",
"node": ">=20.9.0 <21.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"./**/*.{md,ts,tsx,json}\"",
"server-json": "npx json-server --watch db.json --port 3500",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@tanstack/react-query": "^5.29.0",
"next": "13.5.6",
"react": "^18",
"react-dom": "^18",
"sonner": "^1.4.41",
"ts-node": "^10.9.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3",
"typescript": "^5"
}
}