generated from well-known-components/template-server
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 2.47 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
{
"name": "template-server",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/index.js",
"migrate": "node-pg-migrate --database-url-var PG_COMPONENT_PSQL_CONNECTION_STRING --envPath .env -j ts --tsconfig tsconfig.json -m ./src/migrations",
"migrate:dapps": "node-pg-migrate --database-url-var DAPPS_PG_COMPONENT_PSQL_CONNECTION_STRING --envPath .env -j ts --tsconfig tsconfig.json -m ./src/migrations/dapps",
"lint": "eslint -c .eslintrc.json {src/**/*.ts,test/**/*.ts}",
"start:watch": "nodemon src/index.ts",
"check:code": "eslint -c .eslintrc.json {src,test}",
"check:prettier": "prettier -c '{src,test}/**/*.{js,ts,json,yml,md}'",
"fix:code": "npm run check:code -- --fix",
"fix:prettier": "npm run check:prettier -- --write",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose -c jest.config.json",
"test:watch": "jest --watch --verbose -c jest.config.json",
"test:integration": "jest --forceExit --detectOpenHandles --verbose -c jest.integration.config.json --runInBand",
"test:integration:watch": "jest --watch --verbose -c jest.integration.config.json --runInBand"
},
"devDependencies": {
"@dcl/eslint-config": "^1.1.12",
"@types/node": "^20.2.5",
"@types/seedrandom": "^3.0.8",
"@well-known-components/test-helpers": "^1.5.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@aws-sdk/client-sns": "^3.621.0",
"@covalenthq/client-sdk": "^0.6.4",
"@dcl/schemas": "^14.1.0",
"@segment/analytics-node": "^2.1.0",
"@types/etag": "^1.8.3",
"@well-known-components/env-config-provider": "^1.1.1",
"@well-known-components/http-server": "^1.1.6",
"@well-known-components/interfaces": "^1.2.0",
"@well-known-components/logger": "^3.1.2",
"@well-known-components/metrics": "^2.0.1-20220909150423.commit-8f7e5bc",
"@well-known-components/pg-component": "^0.2.1",
"@well-known-components/thegraph-component": "^1.6.0",
"@well-known-components/tracer-component": "^1.2.0",
"@wert-io/widget-sc-signer": "^2.0.0",
"ajv": "^8.13.0",
"ajv-formats": "^3.0.1",
"canvas": "^2.11.2",
"decentraland-crypto-middleware": "^1.3.0",
"decentraland-transactions": "^2.15.0",
"etag": "^1.8.1",
"ethers": "^6.6.2",
"nock": "^13.5.4",
"p-limit": "^3.1.0",
"seedrandom": "^3.0.5"
}
}