forked from supabase/stripe-sync-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.91 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
{
"name": "stripe-sync-engine",
"version": "0.0.0",
"description": "Stripe sync engine. Sync your Stripe account to your Postgres database.",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --log-error --files ./src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "NODE_ENV=production node dist/server.js",
"test": "node -r dotenv/config node_modules/.bin/jest --detectOpenHandles",
"test:debug": "TERM=dumb node -r dotenv/config node_modules/.bin/jest",
"eslint:check": "eslint 'src/**'",
"prettier:check": "prettier -c src/**",
"prettier:write": "prettier --write src/**",
"prod:deploy": "flyctl -c fly.prod.toml deploy",
"prod:logs": "flyctl -c fly.prod.toml logs",
"prod:secrets:set": "flyctl -c fly.prod.toml secrets import",
"prod:secrets:fetch": "AWS_PROFILE=supabase node internals/getSecrets.js prod",
"staging:deploy": "flyctl deploy",
"staging:logs": "flyctl logs",
"staging:secrets:fetch": "node internals/getSecrets.js staging",
"staging:secrets:set": "flyctl secrets import"
},
"author": "Supabase",
"license": "MIT",
"engines": {
"node": ">= 18.0.0"
},
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.10.1",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"pg": "^8.11.3",
"pg-node-migrations": "0.0.8",
"pino": "^8.16.1",
"stripe": "^14.2.0",
"yesql": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@types/pg": "^8.10.7",
"@types/yesql": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}