-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.16 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
{
"name": "programming-project-api",
"version": "1.0.0",
"description": "programming-project-api API",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:detectOpen": "jest --detectOpenHandles",
"start": "ts-node-dev src/index.ts",
"dev": "ts-node-dev src/index.ts",
"build": "tsc -p tsconfig.build.json"
},
"author": "mirza-bicer",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.5",
"dotenv": "^16.0.0",
"envalid": "^7.3.1",
"express": "^4.18.1",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.1",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1"
},
"devDependencies": {
"@typegoose/typegoose": "^9.8.1",
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/hpp": "^0.2.2",
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.30",
"@types/passport": "^1.0.11",
"@types/passport-jwt": "^4.0.0",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"bcryptjs": "^2.4.3",
"danfojs-node": "^1.1.2",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"http-status": "^1.5.1",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"redis": "^4.3.1",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
}
}