-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "ts-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src",
"test": "jest --passWithNoTests",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"next": "12.2.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/dom": "^8.16.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"@types/jest": "^28.1.6",
"@types/node": "18.6.5",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"eslint-plugin-jest": "^26.8.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-testing-library": "^5.6.0",
"husky": ">=6",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.54.3",
"ts-jest": "^28.0.7",
"typescript": "4.7.4"
},
"lint-staged": {
"*.(ts,tsx)": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown --config .prettierrc"
}
}