forked from smdoh/pipebird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "pipebird",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently npm:dev:workers npm:dev:server",
"dev:server": "NODE_ENV=\"development\" nodemon --ext \"ts\" --exec \"ts-node --esm --transpileOnly server/index.ts\" | pino-pretty",
"dev:workers": "NODE_ENV=\"development\" nodemon --ext \"ts\" --exec \"ts-node --esm --transpileOnly lib/temporal/worker.ts\" | pino-pretty",
"build": "prisma generate && rm -rf dist && tsc && node dist/lib/temporal/bundle.js",
"start": "npm run start:workers & npm run start:server",
"start:server": "NODE_ENV=\"production\" node dist/server/index.js",
"start:workers": "NODE_ENV=\"production\" node dist/lib/temporal/worker.js",
"prepare": "husky install",
"test": "NODE_ENV=\"test\" ava tests/*",
"typecheck": "tsc --noEmit",
"lint": "prettier --check . && eslint . --ext .ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.154.0",
"@aws-sdk/lib-storage": "^3.154.0",
"@aws-sdk/s3-request-presigner": "^3.154.0",
"@google-cloud/bigquery": "^6.0.3",
"@google-cloud/storage": "^6.4.2",
"@prisma/client": "^4.2.1",
"@temporalio/activity": "^1.1.0",
"@temporalio/client": "^1.2.0",
"@temporalio/worker": "^1.2.0",
"@temporalio/workflow": "^1.2.0",
"argon2": "^0.28.7",
"cors": "^2.8.5",
"csv": "^6.2.0",
"date-fns": "^2.29.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"got": "^12.3.1",
"knex": "^2.2.0",
"long": "^5.2.0",
"mysql2": "^2.3.3",
"nanoid": "^4.0.0",
"pg": "^8.7.3",
"pg-query-stream": "^4.2.4",
"pino": "^8.4.1",
"pino-http": "^8.2.0",
"snowflake-sdk": "^1.6.13",
"sql-template-tag": "^5.0.3",
"validator": "^13.7.0",
"zod": "^3.18.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.11.56",
"@types/pg": "^8.6.5",
"@types/pg-copy-streams": "^1.2.1",
"@types/snowflake-sdk": "^1.6.7",
"@types/validator": "^13.7.5",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"ava": "^4.3.1",
"concurrently": "^7.3.0",
"eslint": "^8.22.0",
"eslint-plugin-deprecation": "^1.3.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"pino-pretty": "^9.1.0",
"prettier": "^2.7.1",
"prisma": "^4.2.1",
"ts-node": "^10.9.1",
"type-fest": "^2.18.0",
"typescript": "^4.7.4"
},
"prettier": {
"arrowParens": "always",
"trailingComma": "all"
},
"lint-staged": {
"*.{ts,json,md}": "prettier --write",
"*.ts": "eslint"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"prisma": {}
}