-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"type": "module",
"name": "api-todomi",
"version": "1.0.0",
"description": "Simple API TODO",
"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": [
"api",
"todo"
],
"author": "Yumicode",
"license": "MIT",
"dependencies": {
"ajv": "^8.11.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.12.0",
"nodemailer": "^6.8.0",
"pg": "^8.8.0",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/bcrypt": "^5.0.0",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/jest": "^29.2.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemailer": "^6.4.6",
"@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.42.1",
"@typescript-eslint/parser": "^5.42.1",
"concurrently": "^7.5.0",
"debug": "^4.3.4",
"eslint": "^8.27.0",
"jest": "^29.3.0",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}