-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "nextjs-template",
"version": "0.0.0",
"description": "",
"repository": "[email protected]:microverse-dev/nextjs-template.git",
"keywords": [],
"author": "Junya Kono <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix"
},
"dependencies": {
"@chakra-ui/react": "^2.4.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"framer-motion": "^8.2.4",
"next": "^13.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"gts": "^3.1.1",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.2",
"typescript": "^4.9.4"
}
}