-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.4 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "todo-api",
"version": "1.0.0",
"description": "To-Do RESTful API",
"main": "index.js",
"scripts": {
"start": "node dist/src/index.js",
"build": "tsc",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec\"",
"lint": "pretty-quick -w . && eslint . --fix",
"postinstall": "yarn run build",
"swagger": "tsoa spec",
"test": "jest --watchAll --runInBand --verbose",
"watch-server": "nodemon --ignore tests/ --watch src -e ts,tsx --exec ts-node src/index.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaabdyrahmanov/todo-api.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaabdyrahmanov/todo-api/issues"
},
"homepage": "https://github.com/aaabdyrahmanov/todo-api#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.8",
"@types/faker": "^5.1.5",
"@types/helmet": "^4.0.0",
"@types/http-errors": "^1.8.1",
"@types/jest": "^26.0.19",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.2",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-jest": "^27.3.1",
"concurrently": "^5.3.0",
"eslint": "^8.1.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.2",
"faker": "^5.1.0",
"jest": "^26.6.3",
"nodemon": "^2.0.4",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"supertest": "^6.1.6",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.4",
"tsoa": "^3.3.0",
"typeorm": "^0.2.29",
"winston": "^3.3.3"
}
}