-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1 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
{
"name": "viewtube",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.143",
"@types/express": "^4.17.13",
"@types/inflection": "^1.13.0",
"@types/node": "^17.0.19",
"@types/uuid": "^8.3.4",
"nodemon": "^2.0.15",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"scripts": {
"dev": "nodemon src/index.ts --watch src --watch .env -e ts",
"force-init-db": "yarn prisma migrate reset --force && yarn prisma db push && yarn seed",
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.294.0",
"@aws-sdk/s3-request-presigner": "^3.294.0",
"@interval/fake-stripe": "^1.0.2",
"@interval/sdk": "1.0.0",
"@prisma/client": "4",
"dotenv": "^16.0.3",
"ejs": "^3.1.6",
"express": "^4.17.3",
"is-image": "^3.1.0",
"openai": "^3.2.1",
"prisma": "4",
"uuid": "^8.3.2",
"zod": "^3.20.6"
}
}