-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1003 Bytes
/
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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add out/ && git commit -m \"Deploy Next.js to gh-pages\" && git subtree push --prefix out origin gh-pages"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@fontsource/nunito": "^4.5.1",
"framer-motion": "^4.1.17",
"next": "latest",
"qr-image": "^3.2.0",
"querystring": "^0.2.1",
"react": "^17.0.2",
"react-calendar": "^3.5.0",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-query": "^3.34.0",
"react-use": "^17.3.1"
},
"devDependencies": {
"@types/qr-image": "^3.2.5",
"@types/react": "^17.0.37",
"eslint": "7",
"eslint-config-next": "12.0.4",
"typescript": "^4.5.2"
}
}