-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
51
52
53
54
{
"name": "nextjs-typescript-starter",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "NODE_ENV=test jest",
"lint": "eslint --cache --fix --max-warnings=0",
"format": "prettier --write",
"type-check": "tsc --pretty --noEmit",
"prepare": "is-ci || is-docker || husky install"
},
"dependencies": {
"next": "^12.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.6",
"@types/react": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"autoprefixer": "^10.3.7",
"eslint": "7",
"eslint-config-next": "^12.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-testing-library": "^5.0.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"is-docker": "^3.0.0",
"jest": "^27.3.1",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^11.2.6",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"tailwindcss": "^2.2.17",
"typescript": "^4.4.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn format",
"yarn lint"
]
},
"packageManager": "[email protected]"
}