forked from colorstackorg/oyster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 884 Bytes
/
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
{
"name": "@oyster/api",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "tsx watch ./src/main.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "tsx ./src/main.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.576.0",
"@oyster/core": "*",
"@oyster/types": "*",
"@oyster/utils": "*",
"@sentry/node": "^7.43.0",
"@sentry/tracing": "^7.43.0",
"cors": "^2.8.5",
"dedent": "^0.7.0",
"dotenv": "^16.3.1",
"express": "^4.18.3",
"helmet": "^6.0.1",
"puppeteer-core": "^23.7.0",
"ts-pattern": "4.3.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@oyster/eslint-config": "*",
"@oyster/tsconfig": "*",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/node": "^16.0.0",
"tsx": "^4.7.1"
}
}