-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "ts-api-template",
"version": "1.0.0",
"main": "dist/index.js",
"types": "src/index.ts",
"author": "Maz Ahmadi <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "eslint src/**/*.ts --fix",
"build": "tsc",
"prestart": "yarn build",
"start": "node .",
"dev": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"db:create": "./scripts/run-postgres.sh",
"db:migrate": "prisma migrate dev",
"redis:create": "./scripts/run-redis.sh"
},
"dependencies": {
"@prisma/client": "^5.7.1",
"bullmq": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"dotenv-safe": "^8.2.0",
"express": "^4.18.1",
"express-validator": "^7.0.1",
"firebase-admin": "^12.0.0",
"ioredis": "^5.2.0",
"luxon": "^3.4.4",
"morgan": "^1.10.0",
"winston": "^3.8.0"
},
"devDependencies": {
"@firebase/app-types": "0.x",
"@types/cors": "^2.8.12",
"@types/express": "4",
"@types/luxon": "^3.3.7",
"@types/morgan": "^1.9.3",
"@types/node": "20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"prisma": "^5.7.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}