-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "moq",
"version": "0.0.1",
"description": "Moq server",
"author": "",
"license": "ISC",
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node build/server.js",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"build": "tsoa spec-and-routes && tsc",
"test": "jest --forceExit --detectOpenHandles",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"minify": "npx javascript-obfuscator build -o ./dist",
"prod": "cross-env NODE_ENV=production node dist/server.js"
},
"dependencies": {
"@faker-js/faker": "^7.4.0",
"archiver": "^5.3.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.29.2",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"envalid": "^7.3.1",
"express": "^4.18.1",
"fast-glob": "^3.2.11",
"helmet": "^5.1.1",
"hpp": "^0.2.3",
"http-proxy-middleware": "^2.0.6",
"import-fresh": "^3.3.0",
"match-json": "^1.3.4",
"md5": "^2.3.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"path-to-regexp": "^6.2.1",
"qs": "^6.11.0",
"serve-index": "^1.9.1",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.5.0",
"tsoa": "^4.1.2",
"twing": "^5.1.2",
"uuid": "^8.3.2",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/hpp": "^0.2.2",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.45",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"concurrently": "^7.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"javascript-obfuscator": "^4.0.0",
"jest": "^28.1.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
}
}