This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
101 lines (101 loc) · 3.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "devcon-website",
"description": "The annual conference for all Ethereum developers, researchers, thinkers, and makers.",
"author": "efdevcon",
"version": "0.2.0",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "yarn prebuild:cms",
"prebuild:cms": "sed -i \"s|%BRANCH_PLACEHOLDER%|$BRANCH|g\" ./public/admin/config.yml && sed -i \"s|local_backend: true||g\" ./public/admin/config.yml",
"dev:cms": "npx netlify-cms-proxy-server",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"scripts:db-cleanup": "ts-node src/scripts/db-cleanup",
"scripts:pretalx-import": "ts-node src/scripts/pretalx-import",
"scripts:twitter-import": "ts-node src/scripts/twitter-import"
},
"dependencies": {
"@elastic/elasticsearch": "^8.1.0",
"@notionhq/client": "^0.4.11",
"@octokit/rest": "^18.12.0",
"@sentry/nextjs": "^7.13.0",
"@tippyjs/react": "^4.2.6",
"@types/matter-js": "^0.18.2",
"@walletconnect/web3-provider": "^1.8.0",
"carousel": "^0.0.3",
"dotenv": "^15.0.0",
"email-validator": "^2.0.4",
"eth-sig-util": "^3.0.1",
"ethereum-blockies-base64": "^1.0.2",
"ethers": "^5.5.4",
"fuzzy-search": "^3.2.1",
"gray-matter": "^4.0.3",
"gsap": "^3.5.0",
"iron-session": "^6.0.5",
"js-search": "^2.0.0",
"jsonp": "^0.2.1",
"markdown-it": "^12.3.2",
"markdown-it-video": "^0.6.3",
"matter-js": "^0.18.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"mongodb-client-encryption": "^1.2.7",
"mongoose": "^6.1.9",
"next": "13.4.9",
"next-intl": "^2.3.5",
"next-pwa": "^5.5.4",
"node-fetch": "^3.2.3",
"nodemailer": "^6.7.2",
"panzoom": "^9.4.3",
"qrcode.react": "^1.0.1",
"query-string": "^7.1.0",
"react": "^18.2.0",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-cool-dimensions": "^2.0.7",
"react-dom": "^18.2.0",
"react-hook-form": "^7.25.3",
"react-slick": "^0.28.1",
"react-toggle": "^4.1.3",
"react-use-gesture": "^9.1.3",
"rss-parser": "^3.12.0",
"sharp": "^0.30.3",
"simplex-noise": "^2.4.0",
"slick": "^1.12.2",
"slick-carousel": "^1.8.1",
"slugify": "^1.6.5",
"swr": "^1.2.0",
"three": "^0.119.1",
"three-orbit-controls": "^82.1.0",
"unique-names-generator": "^4.7.1",
"web3modal": "^1.9.5"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.36.1",
"@octokit/types": "^6.34.0",
"@svgr/webpack": "^6.2.1",
"@types/fuzzy-search": "^2.1.2",
"@types/js-search": "^1.4.0",
"@types/jsonp": "^0.2.1",
"@types/mongoose": "^5.11.97",
"@types/node": "17.0.14",
"@types/nodemailer": "^6.4.4",
"@types/qrcode.react": "^1.0.2",
"@types/react": "17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-slick": "^0.23.8",
"@types/react-toggle": "^4.0.3",
"cross-fetch": "^3.1.5",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"glslify-deps": "^1.3.2",
"glslify-loader": "^2.0.0",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"sass": "^1.49.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}