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.93 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": "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": ">= 14.0.0"
},
"dependencies": {
"@fastify/autoload": "^5.7.0",
"@fastify/swagger": "^8.2.1",
"@fastify/swagger-ui": "^1.3.0",
"dotenv": "^16.0.3",
"fastify": "^4.11.0",
"pg": "^8.8.0",
"pg-node-migrations": "0.0.8",
"stripe": "^8.222.0",
"yesql": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/pg": "^8.6.6",
"@types/yesql": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"crypto": "^1.0.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"pino": "^8.8.0",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}