-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.79 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.79 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "iwa-api",
"version": "1.0.0",
"description": "An insecure NodeJS/Express/MongoDB REST API for educational purposes.",
"main": "index.ts",
"scripts": {
"build": "cross-env NODE_ENV=production npx tsc && cross-env NODE_ENV=production ts-node src/configs/swagger.config.ts && shx cp src/configs/swagger_output.json ./dist/configs",
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"dev:legacy": "cross-env USE_INSECURE=true USE_LEGACY_CIPHER=true npm run dev",
"test": "cross-env jest --ci --reporters=default --reporters=jest-junit",
"test:legacy": "cross-env USE_INSECURE=true USE_LEGACY_CIPHER=true npm run test",
"swagger": "cross-env ts-node src/configs/swagger.config.ts && shx cp src/configs/swagger_output.json ./public/docs/openapi.json"
},
"keywords": [],
"author": {
"name": "kadraman <klee2@opentext.com>"
},
"license": "GPLv3",
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@jest/globals": "^30.0.3",
"@tsconfig/node-lts": "^18.12.5",
"@types/config": "^3.3.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.20",
"@types/express-jwt": "^7.4.2",
"@types/helmet": "^4.0.0",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^20.12.8",
"@types/sqlite3": "^5.1.0",
"babel-jest": "^30.0.2",
"cross-env": "^7.0.3",
"jest": "^30.0.3",
"jest-junit": "^16.0.0",
"shx": "^0.4.0",
"ts-jest": "^29.4.0",
"ts-node-dev": "^2.0.0",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/express-session": "^1.17.9",
"@types/morgan": "^1.9.7",
"@types/swagger-ui-express": "^4.1.5",
"body-parser": "^1.20.2",
"config": "^3.3.6",
"cors": "^2.8.5",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-jwt": "^8.4.1",
"express-jwt-authz": "^2.4.1",
"express-jwt-permissions": "^1.3.7",
"express-oauth2-jwt-bearer": "^1.6.0",
"express-session": "^1.17.3",
"express-validator": "^6.15.0",
"helmet": "^6.2.0",
"install": "^0.13.0",
"jquery": "^3.6.0",
"jsdom": "^17.0.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^3.1.0",
"moment": "^2.29.2",
"mongodb-memory-server-core": "^10.1.4",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"npm": "^10.7.0",
"random-quote-generator5.0": "^1.1.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"swagger-autogen": "^2.23.6",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0"
},
"config": {
"mongodbMemoryServer": {
"debug": false
}
}
}