-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "nextjs-template",
"version": "1.4.0",
"engines": {
"node": ">=18"
},
"description": "Opinionated Next.js template configured with TypeScript, DaisyUI, Heroicons and other devtools",
"repository": {
"type": "git",
"url": "https://github.com/Howard86/nextjs-template"
},
"author": "Howard Tai <[email protected]>",
"license": "MIT",
"keywords": [
"template",
"next.js",
"typescript",
"jest",
"eslint",
"prettier",
"lint-staged",
"husky",
"commitlint"
],
"bugs": {
"url": "https://github.com/Howard86/nextjs-template/issues"
},
"homepage": "https://github.com/Howard86/nextjs-template",
"scripts": {
"analyze": "ANALYZE=true next build",
"clean": "rm -rf .next node_modules coverage tsconfig.tsbuildinfo",
"check-all": "yarn type-check && yarn lint && yarn format",
"type-check": "tsc --noEmit",
"lint": "TIMING=1 eslint .",
"format": "prettier --write --list-different .",
"debug": "NODE_OPTIONS='--inspect' next dev",
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"daisyui": "^3.5.1",
"next": "^13.4.19",
"next-api-handler": "^0.4.10",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@next/bundle-analyzer": "^13.4.19",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^5",
"@testing-library/react": "^14.1.0",
"@types/node": "^20.8.9",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-redux": "^7.1.30",
"@types/testing-library__jest-dom": "^5",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-config-howardism": "^0.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^14.0.1",
"msw": "^1.3.2",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"react-test-renderer": "^18.2.0",
"start-server-and-test": "^2.0.2",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"whatwg-fetch": "^3.6.19"
},
"msw": {
"workerDirectory": "public"
}
}