-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.55 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
{
"name": "authorization-api",
"version": "1.0.0",
"description": "Authorization API",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "node ./dist/main.js",
"build": "tsc",
"dev": "nodemon",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SergeyOcheretenko/AuthorizationAPI.git"
},
"keywords": [
"authorization",
"api",
"typescript"
],
"author": "Sergey Ocheretenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/SergeyOcheretenko/AuthorizationAPI/issues"
},
"homepage": "https://github.com/SergeyOcheretenko/AuthorizationAPI#readme",
"dependencies": {
"@prisma/client": "^3.15.2",
"@types/jsonwebtoken": "^8.5.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"inversify": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13",
"tslog": "^3.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"prisma": "^3.15.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}