-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.74 KB
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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "node_js_api",
"version": "1.0.0",
"description": "API на основе Node JS",
"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/**",
"test": "jest",
"test:e2e": "jest --config jest.e2e.config.ts --coverage",
"generate": "prisma generate",
"lint:fix": "eslint ./src/** --fix",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Meekwest/node_js_api.git"
},
"author": "Meekwest",
"license": "ISC",
"bugs": {
"url": "https://github.com/Meekwest/node_js_api/issues"
},
"homepage": "https://github.com/Meekwest/node_js_api#readme",
"dependencies": {
"@prisma/client": "^3.10.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"inversify": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.7.0",
"tslog": "^3.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"prisma": "^3.10.0",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}