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{
"name": "jobbasso",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"lint-staged": "lint-staged",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"next": "15.4.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"sanitize.css": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^15.4.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vanilla-extract/css": "^1.17.4",
"@vanilla-extract/next-plugin": "^2.4.14",
"eslint": "^9.32.0",
"eslint-config-next": "^15.4.4",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}