-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "nextchakra-starter",
"version": "0.1.0",
"private": true,
"author": "sozonome",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write src",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.6.4",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@fontsource/lexend": "^4.4.5",
"@fontsource/poppins": "^4.5.0",
"@splitbee/web": "^0.2.4",
"framer-motion": "^4.1.17",
"next": "^11.0.0",
"next-pwa": "^5.2.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"swr": "^1.0.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^3.4.2",
"@types/cors": "^2.8.12",
"@types/react": "^17.0.11",
"eslint": "^7.28.0",
"eslint-config-next": "^11.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"typescript": "^4.3.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}