-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend API using Vercel serverless functions and Supabase",
"main": "api/index.js",
"scripts": {
"start": "vercel dev",
"migrate": "node migrations/index.js",
"seed": "node seeders/index.js",
"test": "cross-env NODE_ENV=test jest",
"build": "vercel build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@supabase/supabase-js": "^2.0.0",
"vercel": "^29.4.0",
"pg": "^8.7.1",
"dotenv": "^16.0.3",
"cross-env": "^7.0.3"
},
"devDependencies": {
"jest": "^29.0.0",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdoc": "^4.0.0"
},
"engines": {
"node": ">=14.x"
},
"keywords": [
"backend",
"supabase",
"vercel",
"serverless",
"API"
],
"author": "",
"license": "ISC"
}