-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
68 lines (68 loc) · 2.03 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
{
"name": "@catalyst/lambdas-server",
"version": "0.1.0",
"description": "Lambdas server",
"license": "Apache-2.0",
"author": "Decentraland Contributors",
"scripts": {
"build": "tsc -b",
"cleanup": "shx rm -rf dist node_modules",
"start:server": "node ./dist/src/entrypoints/run-server.js",
"test": "jest --runInBand --forceExit --coverage"
},
"dependencies": {
"@dcl/catalyst-api-specs": "^3.3.0",
"@dcl/crypto": "^3.4.5",
"@dcl/schemas": "^14.1.0",
"@dcl/urn-resolver": "^3.6.0",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/fetch-component": "^2.0.2",
"@well-known-components/http-server": "^2.1.0",
"@well-known-components/interfaces": "^1.4.3",
"@well-known-components/logger": "^3.1.3",
"@well-known-components/metrics": "^2.1.0",
"@well-known-components/thegraph-component": "^1.6.0",
"compression": "1.7.4",
"cors": "2.8.5",
"dcl-catalyst-client": "^21.7.0",
"destroy": "1.2.0",
"eth-connect": "^6.2.4",
"express": "4.20.0",
"express-openapi-validator": "4.13.8",
"fp-future": "^1.0.1",
"log4js": "6.4.7",
"lru-cache": "7.8.2",
"morgan": "1.10.0",
"ms": "2.1.3",
"node-fetch": "2.6.7",
"on-finished": "2.4.1",
"sharp": "0.32.6"
},
"devDependencies": {
"@types/compression": "^1",
"@types/cors": "^2",
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/lru-cache": "7.6.1",
"@types/morgan": "^1",
"@types/node": "17.0.45",
"@types/sharp": "0.30.5",
"@types/sinon": "10.0.13",
"@types/uuid": "^8",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.4.7",
"jest-junit": "^13.0.0",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"sinon": "13.0.2",
"ts-jest": "27.1.5",
"ts-mockito": "2.6.1",
"ts-node": "10.7.0",
"tsc": "2.0.4",
"typescript": "^4.7.4"
}
}