-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "chatBackEnd",
"version": "1.0.0",
"engines": {
"node": "18.4.0"
},
"scripts": {
"start": "node ./dist/main.js",
"dev": "nodemon",
"dev:inspect": "nodemon -e ts,json --exec node --inspect=localhost:9222 -r ts-node/register src/main.ts",
"generate": "prisma generate",
"migration": "prisma migrate dev --name init",
"prod": "npm run generate && npm run migration && npm run build && npm run start",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "4.0.0",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"cors": "2.8.5",
"express": "4.17.3",
"inversify": "6.0.1",
"jsonwebtoken": "8.5.1",
"node-cron": "3.0.0",
"reflect-metadata": "0.1.13",
"tslog": "3.3.3",
"tweetnacl": "1.0.3",
"tweetnacl-util": "0.15.1",
"base58-js": "1.0.4"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jest": "27.0.2",
"@types/jsonwebtoken": "8.5.5",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"dotenv": "16.0.0",
"nodemon": "2.0.15",
"prisma": "4.0.0",
"ts-node": "10.7.0",
"typescript": "4.6.3"
}
}