-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "express-note-application",
"version": "1.1.0",
"description": "A Monolith backend capable of CRUD operations for a Note application",
"main": "dist/main.js",
"scripts": {
"start": "tsc && node dist/server.js",
"start:dev": "nodemon",
"build": "tsc -p tsconfig.json",
"test:unit": "jest"
},
"author": "Francois J. Aouad",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"express-validation": "^4.1.0",
"http-errors": "^2.0.0",
"joi-validation": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.0",
"nodemailer": "^6.7.5",
"prom-client": "^14.2.0",
"redis": "^3.1.2",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "18.11.18",
"@types/nodemailer": "^6.4.9",
"@types/redis": "^4.0.11",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.3.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.22",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"testcontainers": "^9.6.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.1",
"typescript": "^4.7.4"
}
}