-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "db",
"version": "1.0.0",
"description": "API для проекта db",
"main": "index.js",
"type": "commonjs",
"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",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Abdulloh Abduvohidov",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"inversify": "^6.0.1",
"mongoose": "^8.6.1",
"reflect-metadata": "^0.1.13",
"tslog": "^3.2.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.96",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}