-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.71 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
79
80
{
"name": "orbit-backend",
"version": "0.5.1",
"author": "Beyond_Imagination <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"start": "pnpm build && cross-env NODE_ENV=production node dist/app.js",
"dev": "cross-env NODE_ENV=development nodemon",
"test": "jest",
"build": "rm -rf dist && swc src -d dist --source-maps --copy-files",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "pnpm lint --fix",
"postinstall": "husky install",
"reviewer": "cross-env NODE_ENV=development node -r @swc-node/register src/scripts/reviewers.ts"
},
"dependencies": {
"@typegoose/typegoose": "^11.2.0",
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cron-parser": "^4.8.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-asyncify": "^2.1.2",
"express-winston": "^4.2.0",
"fastq": "^1.15.0",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.1",
"jwk-to-pem": "^2.0.5",
"lru-cache": "^10.0.0",
"moment-timezone": "^0.5.43",
"mongodb": "^6.6.2",
"mongoose": "^7.3.3",
"mongoose-paginate-v2": "^1.7.1",
"newrelic": "^10.3.1",
"node-fetch": "^2.6.11",
"node-schedule": "^2.1.1",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@jest-mock/express": "^2.0.2",
"@swc-node/register": "^1.6.5",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.60",
"@swc/helpers": "^0.5.1",
"@swc/jest": "0.2.26",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/hpp": "^0.2.2",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/jwk-to-pem": "^2.0.1",
"@types/newrelic": "^9.14.0",
"@types/node-fetch": "^2.6.4",
"@types/node-schedule": "^2.1.0",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"fetch-mock-jest": "^1.5.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"pm2": "^5.3.0",
"prettier": "^2.8.8",
"swc-node": "^1.0.0",
"tslib": "^2.6.2",
"typescript": "^5.0.4"
}
}