-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
{
"name": "next-chakra-starter",
"description": "An opinionated simple starter / template project with Next.js and Chakra UI.",
"version": "1.0.0",
"repository": "git@github.com:hendraaagil/next-chakra-starter.git",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ./src/components/** ./src/pages/** -c .eslintrc.js --ext js,jsx",
"lint-fix": "eslint ./src/components/** ./src/pages/** -c .eslintrc.js --fix --ext js,jsx"
},
"dependencies": {
"@chakra-ui/react": "^2.1.2",
"@chakra-ui/theme-tools": "^2.0.1",
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"framer-motion": "6.3.4",
"next": "12.1.6",
"next-seo": "^5.4.0",
"nprogress": "^0.2.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-icons": "^4.3.1"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"prettier": "^2.6.2"
}
}