-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.06 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
47
48
49
50
51
52
53
54
55
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc"
},
"dependencies": {
"@apollo/client": "^3.5.6",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.4",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"framer-motion": "^5",
"graphql": "^16.2.0",
"next": "latest",
"next-seo": "^4.28.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-infinite-scroll-component": "^6.1.0"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"typescript": "4.3.2"
},
"next-unused": {
"alias": {
"@common/*": [
"common/*"
],
"@components/*": [
"components/*"
],
"@graphql/*": [
"graphql/*"
],
"@config/*": [
"config/*"
]
},
"debug": true,
"include": [
"common",
"components",
"graphql"
],
"exclude": [],
"entrypoints": [
"pages"
]
}
}