-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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": "next11-ts-lint-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.24.0",
"next": "12.0.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"recharts": "^2.1.6",
"swr": "^1.0.1"
},
"devDependencies": {
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/jest": "^27.0.3",
"@types/react": "17.0.35",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"axios-mock-adapter": "^1.20.0",
"eslint": "<8.0.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^12.0.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "4.5.2"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix"
],
"*.{json,yaml,js,jsx,ts,tsx}": [
"prettier --write"
]
}
}