This repository was archived by the owner on May 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "meet",
"version": "0.1.0",
"license": "AGPL-3.0-only",
"private": true,
"scripts": {
"postinstall": "shx cp -n .env.template .env.local",
"build": "next build",
"start": "next dev",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"deploy:prod": "VERCEL_PROJECT_ID=prj_XtaVRKBQGBO5AWPJmPr64tZBZGiN VERCEL_ORG_ID=team_KhtQSVbEoibKvwqqqhwviVnO npm run _deploy:vercel",
"_deploy:vercel": "vercel build --yes --prod --token=$VERCEL_TOKEN && vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN"
},
"dependencies": {
"@heroicons/react": "^2.0.16",
"@types/http-errors": "^2.0.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@vitejs/plugin-react": "^4.2.1",
"@zoom/meetingsdk": "^3.1.6",
"airtable": "^0.12.2",
"airtable-ts": "^1.0.0",
"axios": "^1.2.4",
"axios-hooks": "^4.0.0",
"clsx": "^1.2.1",
"dotenv": "^16.0.3",
"eslint-config-next": "13.1.5",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.1",
"next": "^14.3.0-canary.11",
"node-mocks-http": "^1.12.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4",
"typescript": "4.9.4",
"vercel": "^28.15.6",
"vitest": "^1.0.1"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-domdomegg": "^1.2.2",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7"
}
}