forked from niikkiin/nextjs-typescript-chakra-ui-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.09 KB
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
{
"name": "nextjs-typescript-chakra-ui-template",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint": "next lint",
"lint:fix": "eslint --cache --fix",
"typecheck": "tsc --noEmit",
"test": "jest -c jest.config.js --silent --passWithNoTests --runInBand --detectOpenHandles",
"test:update-snapshots": "jest -c jest.config.js --updateSnapshot"
},
"dependencies": {
"@chakra-ui/react": "^3.1.0",
"@emotion/react": "^11.13.3",
"next": "^15.0.3",
"next-themes": "^0.4.3",
"react": "^19.0.0-rc-66855b96-20241106",
"react-dom": "^19.0.0-rc-66855b96-20241106",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.1.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/node": "20.12.3",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"commitlint": "^19.2.1",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.3",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"seedrandom": "^3.0.5",
"typescript": "5.4.3"
},
"prettier": {
"arrowParens": "always",
"printWidth": 80,
"requirePragma": false,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": false
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write ."
]
},
"resolutions": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
}