-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"type": "module",
"name": "architecture-api-template",
"version": "1.0.0",
"description": "Template creating API, simplify our lives...",
"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",
"prod": "concurrently \"npm:dev:build\" \"npm:start\" -c green.bold,yellow.bold",
"test": ""
},
"keywords": [
"template",
"api",
"restful"
],
"author": "yumedo",
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"bcrypt": "^5.1.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express-session": "^1.17.3",
"helmet": "^6.1.5",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.6.0",
"nodemailer": "^6.9.1",
"pg": "^8.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/bcrypt": "^5.0.0",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jsonwebtoken": "^9.0.2",
"@types/nodemailer": "^6.4.7",
"@types/pg": "^8.6.6",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"typescript": "^5.0.4"
}
}