-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.95 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
{
"name": "nextjs-typescript-chakra-ui-template",
"version": "1.2.3",
"private": true,
"scripts": {
"dev": "next dev",
"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/next-js": "^2.1.4",
"@chakra-ui/react": "^2.6.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.11.0",
"envalid": "^7.3.1",
"framer-motion": "^10.12.16",
"next": "^13.4.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.5",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.62.0",
"commitlint": "^17.4.2",
"eslint": "^8.48.0",
"eslint-config-next": "^13.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"lint-staged": "^14.0.1",
"seedrandom": "^3.0.5",
"typescript": "^5.1.3"
},
"prettier": {
"arrowParens": "always",
"printWidth": 80,
"requirePragma": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": false
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write ."
]
}
}