-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.79 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
{
"private": true,
"name": "ts-next-chakra-template",
"version": "1.0.0",
"scripts": {
"build": "next build",
"clean-install": "rimraf node_modules package-lock.json .next && npm i --legacy-peer-deps",
"dev": "next dev",
"format": "npm run format:code && npm run format:package",
"format:code": "prettier --write .",
"format:package": "prettier-package-json --write",
"lint": "npm run lint:types && npm run lint:src",
"lint:fix": "next lint --fix",
"lint:src": "next lint",
"lint:types": "tsc --noEmit",
"pre-commit": "lint-staged",
"prepare": "husky install",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1",
"preversion": "git fetch --tags --force",
"postversion": "git push --tags"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"framer-motion": "^10.16.16",
"next": "14.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "^3.4.0"
},
"devDependencies": {
"@axe-core/react": "^4.8.2",
"@faker-js/faker": "^8.3.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-package-json": "^2.8.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}