-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 882 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
{
"name": "nextjs",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"next": "^15",
"next-themes": "^0.4",
"react": "^19",
"react-dom": "^19",
"react-swipeable": "^7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10",
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^16",
"@types/jest": "^29",
"@types/lodash": "^4",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint-config-next": "^15",
"jest": "^29",
"jest-environment-jsdom": "^29",
"postcss": "^8",
"prettier": "^3",
"tailwindcss": "^4",
"ts-jest": "^29",
"ts-node": "^10",
"typescript": "^5"
}
}