-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "react-next-boilerplace",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/** --max-warnings=0",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:watch": "yarn test --watch",
"generate": "yarn plop --plopfile generators/plopfile.js"
},
"dependencies": {
"husky": "^8.0.3",
"next": "13.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-styled-components": "^7.1.1",
"lint-staged": "^13.1.2",
"plop": "^3.1.2",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"engines": {
"node": "18.x"
},
"cacheDirectories": [
".next/cache"
]
}