-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.07 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
{
"name": "jscommons",
"version": "0.0.0-development",
"description": "A package of common functions used in our JavaScript applications.",
"author": "HT2-Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HT2-Labs/jscommons.git"
},
"files": [
"dist",
"package-lock.json",
"tsconfig.json",
"tslint.json"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"lint": "tslint --project ./tsconfig.json -c ./tslint.json",
"duplication": "jscpd",
"semantic-release": "ht2-release-public-travisci-lib"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">16.0.0",
"npm": ">8.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.95.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"boolean": "^0.1.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"file-stream-rotator": "^0.5.0",
"fs-extra": "^5.0.0",
"helmet": "^3.12.1",
"knex": "^0.19.0",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"mongodb": "^4.7.0",
"morgan": "^1.9.0",
"newrelic": "^7.4.0",
"rulr": "^4.0.2",
"uuid": "^3.2.1",
"winston": "^2.4.2",
"winston-aws-cloudwatch": "^2.0.0"
},
"devDependencies": {
"@ht2-labs/semantic-release": "^3.0.0",
"@ht2-labs/typescript-project": "1.1.0",
"@types/bluebird": "3.5.27",
"@types/body-parser": "1.17.1",
"@types/cors": "2.8.6",
"@types/express": "^4.17.1",
"@types/fs-extra": "5.1.0",
"@types/helmet": "0.0.44",
"@types/knex": "0.15.2",
"@types/lodash": "4.14.141",
"@types/mocha": "2.2.48",
"@types/morgan": "1.7.37",
"@types/node": "^17.0.35",
"@types/uuid": "3.4.5",
"@types/winston": "2.4.4",
"cz-conventional-changelog": "2.1.0",
"jscpd": "0.6.22",
"rimraf": "2.7.1",
"tslint": "5.20.0",
"tslint-consistent-codestyle": "1.16.0",
"tslint-immutable": "4.9.1",
"tslint-microsoft-contrib": "5.2.1",
"typescript": "^4.7.2"
},
"publishConfig": {
"access": "public"
}
}