-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "shardeum-website",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc",
"format:check": "npx prettier -c \"**/*.{js,jsx,json,ts,tsx}\" ",
"format": "npx prettier -w \"**/*.{js,jsx,json,ts,tsx}\"",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.7",
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@types/bootstrap": "^5.2.6",
"@types/react-helmet": "^6.1.6",
"@types/react-slick": "^0.23.10",
"@types/react-vertical-timeline-component": "^3.3.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"airtable": "^0.11.3",
"axios": "^0.26.1",
"chakra-ui-carousel": "^1.0.6",
"framer-motion": "^6.2.8",
"moment": "^2.29.4",
"next": "^14.0.1",
"next-auth": "^4.24.4",
"next-i18next": "^11.0.0",
"next-seo": "^5.4.0",
"notion-client": "^6.12.11",
"notion-types": "^6.12.6",
"notion-utils": "^6.12.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-fast-marquee": "^1.3.1",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.3",
"react-new-window": "^0.2.1",
"react-notion-x": "^6.12.11",
"react-slick": "^0.29.0",
"react-tweet-embed": "^2.0.0",
"react-vertical-timeline-component": "^3.5.2",
"swiper": "^8.1.3",
"typecheck": "tsc"
},
"devDependencies": {
"@types/node": "17.0.14",
"@types/react": "17.0.39",
"eslint": "8.8.0",
"eslint-config-next": "^14.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.0",
"lint-staged": ">=10",
"next-sitemap": "^2.5.20",
"prettier": "2.6.1",
"typescript": "4.5.5"
},
"lint-staged": {
"**/*.{js,jsx,json,ts,tsx}": [
"eslint",
"prettier --write"
]
}
}