-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 908 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
35
36
{
"name": "inbox-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3004",
"build": "next build",
"start": "next start -p 5004",
"lint": "next lint",
"gen:theme-typings": "chakra-cli tokens src/theme/index.ts",
"postinstall": "yarn run gen:theme-typings"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/inter": "^4.5",
"framer-motion": "^5",
"immer": "^9.0.6",
"next": "^12.0.2",
"next-pwa": "^5.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hotkeys-hook": "^3.4.0",
"zundo": "^1.1.0",
"zustand": "^3.5.10"
},
"devDependencies": {
"@chakra-ui/cli": "^1",
"@types/react": "17.0.20",
"eslint": "7.32.0",
"eslint-config-next": "^12.0.2",
"typescript": "4.4.4"
}
}