generated from Howard86/nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
{
"name": "nextjs-template",
"version": "1.2.0",
"description": "Next.js template configured with TypeScript, Charka UI, ESLint, Prettier and git hooks",
"repository": {
"type": "git",
"url": "https://github.com/Howard86/nextjs-template"
},
"author": "Howard Tai <howard@howardism.dev>",
"license": "MIT",
"keywords": [
"template",
"next.js",
"typescript",
"chakra-ui",
"eslint",
"prettier",
"lint-staged",
"husky"
],
"bugs": {
"url": "https://github.com/Howard86/nextjs-template/issues"
},
"homepage": "https://github.com/Howard86/nextjs-template",
"scripts": {
"check-all": "yarn type-check && yarn lint && yarn format",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"dev": "next dev",
"build": "next build",
"start": "next start",
"extract": "yarn i18next-scanner",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.6.8",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"framer-motion": "^4.1.17",
"next": "^11.1.2",
"next-i18next": "^8.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^16.10.1",
"@types/react": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.2",
"i18next-scanner": "^3.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
}
}