-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1021 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
36
37
38
39
40
41
{
"name": "test-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --config ./jest.config.js"
},
"dependencies": {
"@headlessui/react": "^1.7.16",
"@types/node": "20.4.3",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"identity-obj-proxy": "^3.0.0",
"next": "^14.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "^6.14.2",
"typescript": "5.1.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/jest": "^29.5.12",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.14",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.2.0"
}
}