-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"type": "module",
"name": "api-yumelio",
"version": "1.0.0",
"description": "Make an API portfolio, personnal file in which experiences and formation can be shown",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev:build_🏡": "tsc -w",
"dev:run_🚀": "nodemon dist/index.js",
"dev:lint_💥": "eslint . --ext .ts",
"dev": "concurrently \"npm:dev:*\" -c green.bold,yellow.bold,blue.bold",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll"
},
"keywords": [],
"author": "Yumicode & Megafredo",
"license": "MIT",
"dependencies": {
"ajv": "^8.11.0",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.2",
"express-session": "^1.17.3",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.7.8",
"pg": "^8.8.0",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@types/bcrypt": "^5.0.0",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/jest": "^29.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemailer": "^6.4.5",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"concurrently": "^7.3.0",
"debug": "^4.3.4",
"eslint": "^8.23.0",
"jest": "^28.1.3",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
},
"jest": {
"forceExit": true,
"collectCoverage": false,
"verbose": true,
"detectOpenHandles": false
}
}