This repository has been archived by the owner on May 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "airtable-enforcer",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"build": "next build",
"start": "next dev",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"deploy:prod": "VERCEL_PROJECT_ID=prj_6nIJ4NIMgX06789vWXNYOaNEiRNi VERCEL_ORG_ID=QbqUU7VQwMWpjbDCLDlR6ArA npm run _deploy:vercel",
"_deploy:vercel": "vercel build --yes --prod --token=$VERCEL_TOKEN && vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN",
"postinstall": "shx cp -n .env.template .env.local"
},
"dependencies": {
"@heroicons/react": "^2.0.16",
"@next/font": "13.1.5",
"@seratch_/bolt-http-runner": "^1.0.3",
"@slack/bolt": "^3.12.2",
"@slack/web-api": "^6.8.1",
"@types/http-errors": "^2.0.1",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"airtable": "^0.11.6",
"axios": "^1.2.4",
"axios-hooks": "^4.0.0",
"clsx": "^1.2.1",
"dotenv": "^16.0.3",
"eslint-config-next": "13.1.5",
"google-auth-library": "^8.7.0",
"http-errors": "^2.0.0",
"next": "13.1.5",
"node-mocks-http": "^1.12.1",
"oidc-client": "^1.11.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"shx": "^0.3.4",
"typescript": "4.9.4",
"vercel": "^28.15.6",
"vitest": "^0.29.2"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-domdomegg": "^1.2.1",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7"
}
}