-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.78 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
54
55
56
57
58
{
"name": "joke-of-the-day",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.6.2+sha512.47870716bea1572b53df34ad8647b42962bc790ce2bf4562ba0f643237d7302a3d6a8ecef9e4bdfc01d23af1969aa90485d4cebb0b9638fa5ef1daef656f6c1b",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier",
"prettier:write": "prettier . --write",
"prettier:check": "prettier . --check",
"test": "jest --passWithNoTests",
"test:wa": "jest -w",
"predeploy": "npm run build",
"prepare": "husky || exit 0",
"clean:next": "rm -rf .next",
"clean:node": "rm -rf node_modules",
"clean:build": "rm -rf dist",
"clean": "pnpm run clean:next && pnpm run clean:node && pnpm run clean:build"
},
"dependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.8",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"eslint-config-next": "^15.2.0",
"next": "15.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.5.2",
"swr": "^2.3.2",
"typescript": "5.7.3"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2"
}
}