-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.5 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.5 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "server",
"version": "1.0.1",
"main": "dist/index.js",
"icon": "./public/favicon.ico",
"type": "commonjs",
"scripts": {
"start": "cross-env NODE_ENV=production node ./dist/index.js --omit=dev",
"dev": "cross-env NODE_ENV=develoment ts-node-dev -r tsconfig-paths/register ./src/index.ts",
"build": "tsc -p tsconfig.build.json && tsc-alias --verbose",
"lint": "eslint ./src --fix",
"test": "cross-env NODE_ENV=test jest --silent --runInBand",
"test:watch": "cross-env NODE_ENV=test jest --watch --runInBand --silent",
"test:endpoints": "npm run test -- --testPathPattern=tests/endpoints",
"test:helpers": "npm run test -- --testPathPattern=tests/helpers "
},
"keywords": [],
"author": "Luis Valencia",
"license": "ISC",
"description": "Endpoint Mydocs",
"dependencies": {
"@types/multer": "^1.4.12",
"bcryptjs": "2.4.3",
"cls-hooked": "^4.2.2",
"connect-history-api-fallback": "2.0.0",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"globals": "15.11.0",
"helmet": "8.0.0",
"jsonwebtoken": "9.0.2",
"morgan": "1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "3.11.3",
"nodemailer": "6.9.15",
"sequelize": "^6.37.5",
"sequelize-typescript": "^2.1.6",
"socket.io": "4.8.1",
"sqlite3": "5.1.7",
"ts-jest": "^29.2.5",
"winston": "3.15.0",
"winston-daily-rotate-file": "5.0.0",
"zod": "3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@types/bcryptjs": "2.4.6",
"@types/cls-hooked": "^4.3.9",
"@types/connect-history-api-fallback": "1.5.4",
"@types/cookie-parser": "1.4.7",
"@types/cors": "2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "9.0.7",
"@types/morgan": "1.9.9",
"@types/node": "22.8.1",
"@types/nodemailer": "6.4.16",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.13.0",
"eslint-config-love": "^96.0.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-node-dev": "^2.0.0",
"tsc-alias": "1.8.10",
"tsconfig-paths": "4.2.0",
"typescript": "^5.6.3"
}
}