forked from supabase/stripe-sync-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
58
{
"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": "tsx --watch ./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": ">= 20.0.0"
},
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^2.1.0",
"dotenv": "^16.3.1",
"fastify": "^4.25.2",
"p-limit": "^3.1.0",
"pg": "^8.11.3",
"pg-node-migrations": "0.0.8",
"pino": "^8.17.2",
"stripe": "^14.13.0",
"yesql": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/pg": "^8.10.9",
"@types/yesql": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}