-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "lesson1_bloggers_api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/mvk85/lesson1_bloggers_api.git",
"author": "mvk85 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon -r dotenv/config --inspect dist/index.js",
"watch": "tsc -w",
"build": "tsc",
"start": "node -r dotenv/config dist/index.js",
"test": "jest --config src/jest.config.ts",
"test:debug": "jest --runInBand --config src/jest.config.ts",
"test:watch": "jest --config src/jest.congig.ts --watch"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.0",
"inversify": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.6.0",
"mongoose": "^6.3.8",
"nodemailer": "^6.7.5",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.31",
"@types/nodemailer": "^6.4.4",
"@types/uuid": "^8.3.4",
"jest": "^28.1.2",
"mongodb-memory-server": "^8.7.2",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.5",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}