-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
96 lines (96 loc) · 3.35 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
91
92
93
94
95
96
{
"name": "@catalyst/content-server",
"version": "0.1.0",
"description": "Content server",
"license": "Apache-2.0",
"author": "Decentraland Contributors",
"scripts": {
"build": "tsc -b",
"build:watch": "tsc -b --watch",
"build:sourcemap": "tsc --sourcemap",
"cleanup": "shx rm -rf dist node_modules",
"report-api-coverage": "node ./reportApiCoverage.js",
"start:db": "node ./dist/src/entrypoints/run-local-database.js",
"start:maintenance": "node ./dist/src/entrypoints/run-maintenance.js",
"start:content-files-fixer": "node ./dist/src/entrypoints/run-content-files-fixer.js",
"start:server": "node ./dist/src/entrypoints/run-server.js",
"test:ci": "node --max-old-space-size=8000 node_modules/.bin/jest --runInBand --forceExit --coverage",
"test": "jest --runInBand --detectOpenHandles --forceExit --coverage",
"test:integration": "jest --selectProjects integration --runInBand --forceExit --detectOpenHandles --coverage",
"test:unit": "jest --selectProjects unit --runInBand --forceExit --detectOpenHandles --coverage"
},
"dependencies": {
"@dcl/block-indexer": "^1.1.2",
"@dcl/catalyst-api-specs": "^3.3.0",
"@dcl/catalyst-contracts": "^4.4.2",
"@dcl/catalyst-storage": "^4.3.0",
"@dcl/content-validator": "^6.0.0",
"@dcl/crypto": "^3.4.5",
"@dcl/hashing": "^3.0.4",
"@dcl/schemas": "^15.1.1",
"@dcl/snapshots-fetcher": "^9.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/multipart-wrapper": "^1.0.3",
"@well-known-components/thegraph-component": "^1.6.0",
"bloom-filters": "^3.0.0",
"dcl-catalyst-client": "^21.7.0",
"eth-connect": "^6.2.4",
"file-type": "^15.0.1",
"form-data": "^4.0.0",
"fp-future": "^1.0.1",
"joi": "^17.9.2",
"lru-cache": "7.8.2",
"ms": "2.1.3",
"node-cache": "^5.1.2",
"node-fetch": "2.6.7",
"node-pg-migrate": "6.2.2",
"p-queue": "6.6.2",
"path-to-regexp": "^6.2.1",
"pg": "8.8.0",
"pg-query-stream": "^4.2.3",
"qs": "^6.11.1",
"sql-template-strings": "^2.2.2",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/destroy": "1.0.0",
"@types/faker": "5.5.9",
"@types/jest": "27.4.1",
"@types/lru-cache": "7.6.1",
"@types/node": "17.0.45",
"@types/pg": "^8",
"@types/uuid": "^8",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"chalk": "4.1.2",
"columnify": "1.6.0",
"destroy": "1.2.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"faker": "5.5.3",
"jest": "27.4.7",
"jest-extra-utils": "^0.1.0",
"jest-junit": "^13.0.0",
"jest-leak-detector": "^29.3.1",
"lint-staged": "13.0.3",
"nyc": "^15.1.0",
"prettier": "2.7.1",
"testcontainers": "8.9.0",
"ts-jest": "27.1.5",
"ts-mockito": "2.6.1",
"ts-node": "10.7.0",
"tsc": "2.0.4",
"typescript": "^4.7.4"
},
"resolutions": {
"@well-known-components/http-server/path-to-regexp": "^6.2.1",
"express/path-to-regexp": "0.1.7"
}
}