-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.21 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
{
"name": "express-ts-template",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test TS_NODE_FILES=false TS_NODE_TRANSPILE_ONLY=true mocha 'tests/**/*.test.ts'",
"build": "rimraf build && tsc",
"prestart": "npm run migrate-nobuild",
"start": "node -r dotenv/config --unhandled-rejections=strict --enable-source-maps .",
"dev": "nodemon -L .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"setup": "node --unhandled-rejections=strict setup.js",
"docs:build": "cd docs && tsc generate.ts --resolveJsonModule && node -r dotenv/config generate.js && cd .."
},
"keywords": [],
"private": true,
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@swc/core": "^1.3.93",
"@types/bcryptjs": "^2.4.3",
"@types/chai": "^4.3.8",
"@types/chai-spies": "^1.0.5",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-paginate": "^1.0.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.197",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.5",
"@types/node": "^20.8.7",
"@types/nodemailer": "^6.4.10",
"@types/pug": "^2.0.8",
"@types/superagent": "^4.1.20",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"chai-spies": "^1.0.0",
"cross-env": "^7.0.2",
"eslint-config-airbnb-typescript": "^17.1.0",
"mocha": "^10.2.0",
"nodemon": "^2.0",
"redoc": "^2.1.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@cdellacqua/express-async-wrapper": "^1.0.2",
"@cdellacqua/serializable-error": "^1.1.0",
"bcryptjs": "^2.4.3",
"bignumber.js": "^9.1.2",
"bullmq": "^3.15.8",
"cors": "^2.8.5",
"crypto-extra": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-paginate": "^1.0.2",
"express-validator": "^7.0.1",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongodb": "5.8",
"morgan": "^1.10.0",
"nodemailer": "^6.9.5",
"pug": "^3.0.0",
"winston": "^3.10.0"
}
}