-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "@candide/security-gateway",
"version": "0.0.1",
"private": true,
"main": "lib/index.ts",
"scripts": {
"build:env": "./scripts/buildenv.sh",
"build:server": "tsc",
"start": "NODE_ENV=production node ./build/index.js",
"dev": "NODE_ENV=development tsc-watch --onSuccess \"node ./build/index.js\"",
"test": "jest",
"lint": "eslint . --ext .js,.ts && tsc --noEmit",
"lint:fix": "eslint . --ext .js,.ts --fix",
"prettier": "prettier --check '**'",
"prettier:fix": "prettier --write '**'"
},
"dependencies": {
"@meanie/mongoose-to-json": "^2.6.0",
"@sentry/node": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"axios": "^0.27.2",
"ethers": "^5.6.9",
"agenda": "^4.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.4.0",
"helmet": "^5.1.0",
"http-status": "^1.5.2",
"joi": "^17.6.0",
"mongoose": "^6.3.6",
"morgan": "^1.10.0",
"validator": "^13.7.0",
"winston": "^3.8.1",
"winston-transport-sentry-node": "^2.4.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/validator": "^13.7.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.2",
"prettier": "2.7.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
}
}