-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.66 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ufe-peer",
"version": "1.0.0",
"description": "ufe-peer",
"type": "commonjs",
"scripts": {
"start": "npm run serve",
"remove": "rm -r ./dist && rm -r ./logs",
"build": "npm run build-ts && npm run lint:fix",
"serve": "node dist/src/server.js",
"watch-node": "nodemon dist/src/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" --handle-input -c \"yellow.bold,cyan.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "nyc mocha -r ts-node/register -r tsconfig-paths/register --exit tests/**/**.ts",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts tests/**/*.test.ts",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon dist/server.js",
"copy-static-assets": "ts-node -r tsconfig-paths/register copyStaticAssets.ts",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" --handle-input -c \"yellow.bold,cyan.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {},
"_moduleAliases": {
"@root": "dist/src"
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"pre-push": "npm run test"
}
},
"author": "Tumenchudur B",
"license": "ISC",
"dependencies": {
"abort-controller": "^3.0.0",
"axios": "^1.2.2",
"bluebird": "^3.7.2",
"browserless": "^9.8.0",
"celebrate": "^15.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-fileupload": "^1.2.1",
"express-jwt": "^6.1.2",
"express-unless": "^2.1.3",
"fs": "^0.0.1-security",
"helmet": "^4.6.0",
"html-get": "^2.9.28",
"jimp": "^0.16.2",
"jsdom": "^20.0.3",
"json2csv": "^5.0.6",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^2.0.4",
"lodash": "^4.17.21",
"lts": "^1.2.0",
"luxon": "^2.0.2",
"module-alias": "^2.2.2",
"mongoose": "^6.3.5",
"morgan": "^1.10.0",
"n": "^9.0.1",
"node-fetch": "^2.6.9",
"node-html-parser": "^6.1.4",
"node-jose": "^2.2.0",
"nodemailer": "^6.7.2",
"pdfkit": "^0.13.0",
"puppeteer": "^19.4.1",
"puppeteer-core": "^19.4.1",
"secure-random-password": "^0.2.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.1.7",
"@types/express-jwt": "^6.0.4",
"@types/express-unless": "^2.0.1",
"@types/json2csv": "^5.0.3",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.172",
"@types/luxon": "^2.0.3",
"@types/morgan": "^1.9.3",
"@types/node": "^16.18.23",
"@types/node-fetch": "^2.6.3",
"@types/node-jose": "^1.1.10",
"@types/nodemailer": "^6.4.4",
"@types/secure-random-password": "^0.2.1",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"concurrently": "^6.2.1",
"eslint": "^8.2.0",
"husky": "^7.0.2",
"mocha": "^9.1.1",
"nodemon": "^2.0.12",
"prettier": "2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}