-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "@turist/ship",
"description": "Turst ship server",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf ./lib && tsc",
"start": "node lib/",
"lint": "eslint --ext .ts ./src",
"prettier": "prettier --write './{src,__test__}/**/*.ts'",
"test": "jest --clearCache && jest --coverage"
},
"dependencies": {
"@hapi/accept": "5.0.1",
"@turist/fetch": "7.2.0",
"access-log": "0.4.1",
"adal-node": "0.2.3",
"async-sema": "3.1.1",
"content-type": "1.0.4",
"cookies": "0.8.0",
"debug": "4.3.1",
"jsonwebtoken": "8.5.1",
"lru-cache": "5.1.1",
"micri": "4.5.1",
"ms": "2.1.3",
"node-fetch": "2.6.7"
},
"devDependencies": {
"@types/content-type": "1.1.3",
"@types/cookies": "0.7.6",
"@types/debug": "4.1.5",
"@types/jest": "26.0.23",
"@types/jsonwebtoken": "8.3.9",
"@types/lru-cache": "5.1.0",
"@types/ms": "0.7.31",
"@types/node": "13.9.8",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"async-retry-ng": "2.0.1",
"eslint": "7.18.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.4",
"prettier": "2.3.1",
"raw-body": "2.4.2",
"ts-jest": "27.0.3",
"typescript": "4.3.3"
},
"jest": {
"preset": "ts-jest",
"verbose": true
}
}