-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.92 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
{
"$schema": "http://json.schemastore.org/package.json",
"name": "api-location.diviner.xyo.network-express",
"version": "2.0.96",
"description": "XYO Location Diviner",
"sideeffects": false,
"engines": {
"node": ">=16 <17"
},
"exports": {
".": {
"esm5": "./dist/esm/index.js",
"node": {
"import": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js"
},
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"start": "nodemon",
"launch": "node --max-old-space-size=8192 --experimental-specifier-resolution=node ./dist/cjs/index.js",
"clean": "rimraf tsconfig.tsbuildinfo && rimraf ./build && rimraf ./.serverless && rimraf ./.webpack",
"compile": "rimraf ./dist && yarn compile:esm && yarn compile:cjs",
"compile:cjs": "tsc -p tsconfig.build.cjs.json",
"compile:esm": "tsc -p tsconfig.build.esm.json",
"reinstall": "rimraf ./yarn-error.log && rimraf ./node_modules && yarn install && yarn outdated",
"license": "yarn license-checker --exclude \"MIT, ISC, Apache-2.0, BSD, BSD-2-Clause, CC-BY-4.0, Unlicense, CC-BY-3.0, CC0-1.0\"",
"test": "jest ./src",
"test:smoke": "jest ./src/test"
},
"author": "Arie Trouw",
"license": "LGPL-3.0",
"dependencies": {
"@turf/turf": "^6.5.0",
"@xylabs/sdk-api-express-ecs": "^1.2.4",
"@xylabs/sdk-js": "^2.6.4",
"@xyo-network/account": "^2.25.2",
"@xyo-network/api": "^2.25.2",
"@xyo-network/archivist": "^2.25.2",
"@xyo-network/boundwitness": "^2.25.2",
"@xyo-network/core": "^2.25.2",
"@xyo-network/payload": "^2.25.2",
"@xyo-network/sdk-xyo-mongo-js": "^2.2.9",
"axios": "^0.27.2",
"bn.js": "^5.2.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-mung": "^0.5.1",
"geojson": "^0.5.0",
"http-status-codes": "^2.2.0",
"source-map-support": "^0.5.21",
"swagger-autogen": "^2.21.5",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@types/cors": "^2.8.12",
"@types/express": "4.17.13",
"@types/express-mung": "^0.5.2",
"@types/geojson": "^7946.0.10",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.5",
"@types/source-map-support": "0.5.4",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@xylabs/eslint-config": "^2.5.89",
"@xylabs/ts-scripts": "^2.5.89",
"@xylabs/tsconfig": "^2.5.89",
"babel-jest": "^28.1.3",
"ethers": "^5.6.9",
"jest": "^28.1.3",
"license-checker": "^25.0.1",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"uuid": "^8.3.2"
},
"packageManager": "[email protected]"
}