forked from vercel/virtual-event-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.73 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
{
"name": "virtual-event-starter-kit",
"description": "Starter kit for your virtual event.",
"private": true,
"repository": "vercel/virtual-event-starter-kit",
"author": "Vercel Inc.",
"homepage": "https://demo.vercel.events",
"license": "Apache-2.0",
"engines": {
"node": "^14"
},
"scripts": {
"dev": "next",
"start": "next start",
"build": "next build && next export",
"deploy": "yarn build && touch out/.nojekyll && echo 'conf.onestla.tech' > out/CNAME && git add -f out/ && git commit -m \"Deploy\" && git subtree push --prefix out origin gh-pages",
"download-pictures": "ts-node -O '{\"module\": \"commonjs\"}' -r tsconfig-paths/register download-pictures.ts",
"license": "addlicense -l apache -c 'Vercel Inc.' components/**/* lib/**/* pages/**/* styles/**/* *.ts *.js"
},
"dependencies": {
"@100mslive/react-icons": "^0.0.6",
"@100mslive/react-sdk": "^0.0.6",
"@agility/content-fetch": "1.1.1",
"@agility/content-sync": "1.0.3",
"@hcaptcha/react-hcaptcha": "^0.3.7",
"@radix-ui/react-dialog": "0.1.5",
"@radix-ui/react-dropdown-menu": "0.1.4",
"@radix-ui/react-tabs": "0.1.4",
"@reach/skip-nav": "0.12.1",
"@supabase/supabase-js": "^1.35.4",
"chrome-aws-lambda": "10.1.0",
"classnames": "2.2.6",
"cookie": "0.4.1",
"date-fns": "2.16.1",
"htmlescape": "1.1.1",
"intersection-observer": "0.12.0",
"ioredis": "4.19.4",
"ms": "2.1.3",
"next": "^12.0.10",
"nprogress": "0.2.0",
"puppeteer-core": "5.5.0",
"react": "^18.0.0-rc.0",
"react-aria": "3.2.0",
"react-dom": "^18.0.0-rc.0",
"react-hot-toast": "^2.2.0",
"react-markdown": "^8.0.4",
"smoothscroll-polyfill": "0.4.4",
"swr": "0.3.9",
"validator": "13.5.2",
"vanilla-tilt": "1.7.0"
},
"devDependencies": {
"@types/classnames": "2.2.11",
"@types/cookie": "0.4.0",
"@types/htmlescape": "1.1.1",
"@types/ioredis": "4.17.9",
"@types/ms": "0.7.31",
"@types/node": "12.19.8",
"@types/nprogress": "0.2.0",
"@types/puppeteer-core": "2.0.0",
"@types/reach__skip-nav": "0.1.1",
"@types/react": "17.0.0",
"@types/smoothscroll-polyfill": "0.3.1",
"@types/validator": "13.1.1",
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"autoprefixer": "^10.4.0",
"eslint": "7.15.0",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"postcss": "^8.4.4",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-hover-media-feature": "1.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "2.2.1",
"tailwindcss": "^3.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "4.3.2"
}
}