-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
60
61
62
63
{
"name": "climent_city",
"version": "1.0.0",
"description": "climet safet mobile application",
"main": "index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"start:prod": "node ./dist/index.js",
"clean": "rimraf dist",
"lint": "eslint src --ext ts",
"lint:fix": "eslint ./src/**/*.ts --fix",
"prettier": "prettier --write \"**/*.ts\"",
"test": "jest --detectOpenHandles",
"test:coverage": "jest --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.0",
"bcrypt": "^5.1.0",
"chai": "^4.3.7",
"cluster": "^0.7.7",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"express-form-data": "^2.0.22",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"jest": "^29.6.1",
"jwt-simple": "^0.5.6",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"morgan": "^1.10.0",
"mysql2": "^3.5.2",
"nodemailer": "^6.9.4",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pm2": "^5.3.0",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.3",
"swagger-ui-express": "^5.0.0",
"typeorm": "^0.3.17",
"typescript": "^5.1.6",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1"
}
}