-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.09 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
{
"name": "supaqueue",
"version": "1.0.0",
"description": "Batteries-included edge function queuing for Supabase",
"main": "index.js",
"scripts": {
"supaqueue:install": "tsc && node dist/linkProject.js && node dist/generateAndSetSecret.js && node dist/getAnonKey.js && node dist/applyMigrations.js && node dist/applySecretMigration.js && node dist/deployFunction.js",
"supaqueue:install:job_dependencies": "tsc && node dist/applyJobDependenciesMigration.js",
"supaqueue:remove": "tsc && node dist/removeSupaqueue.js",
"supaqueue:link": "tsc && node dist/linkProject.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.16",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"inquirer": "^9.2.12",
"npm-run-all": "^4.1.5",
"ora": "^7.0.1",
"pg": "^8.11.3",
"supabase": "^1.113.2",
"typescript": "^5.3.3"
}
}