-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "Auth-Server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "jest --watchAll --no-cache",
"test:ci": "jest",
"clean": "del ./dist",
"build": "npm run clean && tsc",
"server": "npx alwinsimon && npm run build && node dist/index.js"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/test/setup.ts"
]
},
"keywords": [],
"author": "Dr. Alwin Simon",
"license": "MIT",
"dependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.3",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"alwinsimon": "^1.0.1",
"base-auth-handler": "^1.0.1",
"base-error-handler": "^1.0.1",
"cookie-parser": "^1.4.6",
"del-cli": "^5.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.1.4",
"express-slow-down": "^2.0.1",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.3",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"winston": "^3.11.0",
"winston-mongodb": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/supertest": "^2.0.14",
"jest": "^29.7.0",
"mongodb-memory-server": "^8.15.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
}
}