-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.94 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
{
"name": "template-server",
"license": "Apache-2.0",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"lint:check": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"start": "node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/index.js",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose",
"start:db": "docker-compose up -d && docker exec world_content_server_db bash -c \"until pg_isready; do sleep 1; done\" && sleep 5"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.501.0",
"@dcl/catalyst-api-specs": "^3.3.0",
"@dcl/catalyst-contracts": "^4.4.2",
"@dcl/catalyst-storage": "^4.3.0",
"@dcl/crypto": "^3.4.5",
"@dcl/hashing": "^3.0.4",
"@dcl/platform-crypto-middleware": "^1.1.0",
"@dcl/platform-server-commons": "^0.0.4",
"@dcl/schemas": "^15.4.0",
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@types/busboy": "^1.5.3",
"@well-known-components/env-config-provider": "^1.2.0",
"@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/pg-component": "^1.1.0",
"@well-known-components/thegraph-component": "^1.6.0",
"aws-sdk": "^2.1545.0",
"bcrypt": "^5.1.1",
"busboy": "^1.6.0",
"cron": "^3.1.6",
"eth-connect": "^6.2.4",
"livekit-server-sdk": "^1.2.7",
"lru-cache": "^10.2.0",
"p-queue": "^6.6.2"
},
"devDependencies": {
"@dcl/eslint-config": "^2.2.1",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.11.10",
"@well-known-components/test-helpers": "^1.5.8",
"dcl-catalyst-client": "^21.7.0",
"typescript": "^5.3.3"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
}
}