-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.17 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
81
82
83
84
85
86
87
88
89
90
{
"name": "lynx",
"version": "1.0.0",
"description": "Scalable NodeJS architecture",
"main": "app.js",
"scripts": {
"seed": "concurrently -k \"npm run build-ts\" \"node dist/services/database/seeder.js\"",
"test": "env NODE_ENV=local jest --colors --forceExit --verbose --detectOpenHandles",
"test-coverage": "jest --colors --forceExit --coverage --verbose --detectOpenHandles",
"watch-test": "env NODE_ENV=local npm run test -- --watchAll",
"build-ts": "rm -rf ./dist/ && tsc",
"watch-ts": "rm -rf ./dist/ && tsc -w",
"tslint": "npx tslint -c tslint.json -p tsconfig.json",
"tslint-fix": "npx tslint -c tslint.json -p tsconfig.json --fix",
"prettier:base": "npx prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base --list-different \"app/**/*.ts\"",
"prettier:write": "npm run prettier:base --write \"app/**/*.ts\"",
"serve-debug": "npx nodemon --inspect dist/bin/www/server.js",
"dev": "env NODE_ENV=development concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"serve": "env NODE_ENV=local concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"prod": "env NODE_ENV=production concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"load-test": "npx k6 run ./load_testing/request.js",
"load-test-insecure": "npx k6 run --insecure-skip-tls-verify ./load_testing/request.js"
},
"author": "Rabin Bhandari <rabin.bhandari999@gmail.com>",
"contributors": [
{
"name": "Rabin Bhandari",
"email": "rabin.bhandari999@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rabin999/lynx"
},
"keywords": [
"scalable architecture for enterprise",
"nodejs framework",
"fastify",
"security"
],
"_moduleAliases": {
"@environments": "dist/config/environments"
},
"dependencies": {
"@sentry/node": "^5.15.4",
"@types/graylog2": "^0.2.0",
"@types/heapdump": "^0.3.1",
"@types/mongodb": "^3.5.4",
"@types/pino": "^5.15.1",
"@types/winston": "^2.4.4",
"compression": "^1.7.4",
"cors": "^2.8.5",
"depcheck": "^0.9.2",
"fastify": "^2.11.0",
"fastify-helmet": "^3.0.2",
"fastify-rate-limit": "^3.0.1",
"graylog2": "^0.2.1",
"lusca": "^1.6.1",
"module-alias": "^2.2.2",
"mongodb": "^3.5.5",
"pino": "^5.15.0",
"typescript": "^3.7.4",
"winston": "^3.2.1",
"winston-graylog2": "^2.1.2"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.25",
"@types/lusca": "^1.6.1",
"@types/node": "^12.12.22",
"@types/supertest": "^2.0.8",
"concurrently": "^4.1.2",
"dotenv": "^8.2.0",
"husky": "^4.2.3",
"jest": "^24.9.0",
"k6": "^0.0.0",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0"
},
"husky": {
"hooks": {}
}
}