-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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": "eighty",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"test": "jest --detectOpenHandles --coverage ./src",
"build": "tsc -p ./tsconfig.json"
},
"publishConfig": {
"@marcushaddon:registry": "https://npm.pkg.github.com"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.5",
"@types/combinations": "^1.0.0",
"@types/express": "^4.17.12",
"@types/fast-json-patch": "^1.1.5",
"@types/jest": "^26.0.23",
"@types/mongodb": "^3.6.18",
"@types/node": "^15.6.2",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.1",
"combinations": "^1.0.0",
"deepmerge": "^4.2.2",
"jest": "^27.0.3",
"supertest": "^6.1.3",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"deepclone": "^1.0.2",
"express": "^4.17.1",
"fast-json-patch": "^3.0.0-1",
"jsonschema": "^1.4.0",
"mongodb": "^3.6.9",
"openapi-types": "^9.0.3",
"qs": "^6.10.1",
"runtypes": "^6.3.0",
"swagger-ui-express": "^4.1.6",
"typescript-json-schema": "^0.50.1",
"uuid": "^8.3.2",
"yaml": "^1.10.2"
},
"jest": {
"globalSetup": "./node_modules/@shelf/jest-mongodb/setup.js",
"globalTeardown": "./node_modules/@shelf/jest-mongodb/teardown.js"
}
}