-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.27 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
{
"name": "arecibo-backend",
"version": "0.3.0",
"main": "index.js",
"repository": "ssh://[email protected]/beyond-imagination/arecibo/arecibo-backend.git",
"author": "Beyond_Imagination <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"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/",
"reviewer": "cross-env NODE_ENV=development node -r @swc-node/register src/scripts/reviewers.ts"
},
"dependencies": {
"@typegoose/typegoose": "^11.7.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-asyncify": "^2.1.2",
"express-winston": "^4.2.0",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"jwk-to-pem": "^2.0.5",
"lru-cache": "^10.0.3",
"mongoose": "^7.6.12",
"mongoose-paginate-v2": "^1.7.4",
"newrelic": "^11.9.0",
"node-fetch": "2.7.0",
"node-schedule": "^2.1.1",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.96",
"@swc/helpers": "^0.5.3",
"@types/compression": "^1.7.4",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/hpp": "^0.2.4",
"@types/jest": "^29.5.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/jwk-to-pem": "^2.0.3",
"@types/newrelic": "^9.14.3",
"@types/node-schedule": "^2.1.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"swc-node": "^1.0.0",
"typescript": "^5.2.2"
}
}