-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
70 lines (70 loc) · 1.61 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
{
"name": "traveler",
"version": "3.2.0",
"private": true,
"scripts": {
"start": "node app"
},
"repository": {
"type": "git",
"url": "https://github.com/dongliu/traveler.git",
"release": "3.2.0"
},
"dependencies": {
"basic-auth": "1.0.0",
"cas.js": "0.1.0",
"cheerio": "0.22.0",
"compression": "1.7.3",
"cookie-parser": "1.4.4",
"debug": "^4.3.2",
"errorhandler": "1.5.0",
"express": "^4.17.1",
"express-session": "1.15.6",
"express-slash": "1.0.0",
"express-urlrewrite": "^2.0.0",
"file-stream-rotator": "^0.5.7",
"helmet": "^4.6.0",
"jade": "1.10.0",
"jstransformer-marked": "1.0.1",
"ldapjs": "1.0.0",
"lodash": "^4.17.21",
"method-override": "3.0.0",
"mongoose": "^5.13.13",
"morgan": "1.9.1",
"mqtt": "^4.2.8",
"multer": "0.1.0",
"optional-require": "^1.0.2",
"pause": "0.0.1",
"request": "2.34.0",
"sanitize-html": "^1.20.0",
"serve-favicon": "2.5.0",
"tinymce": "^5.10.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.1.0",
"acorn": "^7.4.1",
"chai": "^4.2.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^3.1.0",
"lint-staged": "^11.2.3",
"mocha": "^5.2.0",
"prettier": "^1.19.1",
"sinon": "^7.2.3",
"supports-color": "^9.0.2",
"templatizer": "^1.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
}
}