-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.1 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.1 KB
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
73
74
75
76
77
78
79
80
81
82
{
"name": "etherlink.com",
"version": "1.0.0",
"description": "Etherlink's website",
"private": true,
"scripts": {
"format": "prettier --write .",
"dev": "next dev",
"build": "next build && node scrapeImagesAirTable.js",
"start": "npx serve@latest out",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/etherlinkcom/website"
},
"license": "ISC",
"dependencies": {
"@headlessui/react": "^1.7.14",
"@next/third-parties": "^14.2.3",
"@types/node": "^20.11.24",
"@types/react": "^18.2.63",
"@vercel/analytics": "^1.1.2",
"autoprefixer": "^10.4.16",
"axios": "^1.7.7",
"date-fns": "^4.1.0",
"embla-carousel-auto-scroll": "^8.0.0",
"embla-carousel-react": "^8.0.0",
"ethers": "^5",
"fathom-client": "^3.6.0",
"file-type": "^19.5.0",
"flowbite-react": "^0.9.0",
"gsap": "^3.13.0",
"js-cookie": "^3.0.5",
"lottie-react": "^2.4.0",
"next": "^13.5.6",
"next-themes": "^0.2.1",
"node-fetch": "^3.3.2",
"postcss": "^8.4.23",
"posthog-js": "1.266.2",
"prettier": "^3.2.5",
"react": "^18",
"react-awesome-reveal": "^4.2.8",
"react-chrono": "^2.3.1",
"react-dom": "^18",
"react-google-recaptcha": "^3.1.0",
"react-markdown": "^10.0.1",
"react-player": "^3.1.0",
"react-toastify": "^11.0.5",
"rehype-raw": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"swiper": "^11.1.3",
"tailwindcss": "3.4.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"eslint-config-next": "^15.5.6",
"husky": "^9.1.7",
"lint-staged": "^16.2.5",
"lorem-ipsum": "^2.0.8"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"singleQuote": true,
"jsxSingleQuote": true,
"arrowParens": "avoid",
"semi": false
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}