-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.11 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": "with-typescript-eslint-jest",
"author": {
"email": "github@maacpiash.com",
"name": "Ahad Chowdhury",
"url": "https://www.maacpiash.com"
},
"license": "MIT",
"version": "1.0.0",
"scripts": {
"build": "next build",
"clean": "rimraf out",
"dev": "next",
"export": "next export",
"format": "prettier --write .",
"lint": "next lint",
"start": "next start",
"test": "jest",
"type-check": "tsc --pretty --noEmit"
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn format",
"yarn lint",
"yarn type-check"
]
},
"dependencies": {
"next": "^12.1.5",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@types/react": "^17.0.11",
"eslint": "^8.13.0",
"eslint-config-next": "^12.1.5",
"eslint-config-prettier": "^8.5.0",
"husky": "^6.0.0",
"jest": "^27.5.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"typescript": "^4.3.4"
}
}