-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"prettier": "prettier '**/*.{js,jsx,mjs,ts,tsx}'",
"stylelint": "stylelint '**/*.css'",
"test": "jest --watch",
"test:ci": "jest --ci",
"typecheck": "tsc -b"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"dependencies": {
"next": "^14.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.1",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-junit": "^16.0.0",
"prettier": "^3.0.2",
"start-server-and-test": "^2.0.0",
"stylelint": "^16.0.2",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.1.6"
}
}