-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.86 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
{
"name": "asset-bundle-registry",
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"build:scripts": "tsc -p tsconfig.scripts.json",
"start": "node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/index.js",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose --passWithNoTests",
"lint:check": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"migrate": "node-pg-migrate --tsconfig ./tsconfig.json --migrations-dir ./src/migrations",
"scripts:populate-scenes": "yarn build:scripts && node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/scripts/index.js scenes",
"scripts:populate-items": "yarn build:scripts && node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/scripts/index.js items"
},
"devDependencies": {
"@dcl/eslint-config": "^2.2.1",
"@types/node": "^22.9.0",
"@well-known-components/test-helpers": "^1.5.8",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.696.0",
"@aws-sdk/client-sqs": "^3.693.0",
"@dcl/crypto": "^3.4.5",
"@dcl/platform-crypto-middleware": "^1.1.0",
"@dcl/platform-server-commons": "^0.0.4",
"@dcl/schemas": "^15.7.0",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/fetch-component": "^3.0.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",
"dcl-catalyst-client": "^21.8.0",
"lru-cache": "9.1.2",
"redis": "^4.7.0",
"sql-template-strings": "^2.2.2"
}
}