-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
38 lines (38 loc) · 926 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
37
38
{
"name": "egghead-beginners-guide-nextjs",
"private": true,
"version": "1.0.0",
"workspaces": [
"exercises/*",
"final/*"
],
"author": "Lazar Nikolov <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/nikolovlazar/egghead-beginners-guide-nextjs.git"
},
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"framer-motion": "^6",
"next": "12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node": "16.11.10",
"@types/react": "17.0.44",
"@types/react-dom": "17.0.15",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"prettier": "2.5.0",
"typescript": "4.6.3"
},
"resolutions": {
"**/@types/react": "17.0.44",
"**/@types/react-dom": "17.0.15",
"**/react": "17.0.2",
"**/react-dom": "17.0.2"
}
}