-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.78 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.78 KB
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
{
"name": "auth-server",
"license": "Apache-2.0",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/src/index.js",
"start:dev": "ts-node src/index.ts",
"start:watch": "nodemon src/index.ts",
"migrate": "node-pg-migrate --database-url-var PG_COMPONENT_PSQL_CONNECTION_STRING --envPath .env -j ts --tsconfig tsconfig.json -m ./src/migrations",
"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",
"lint": "eslint -c .eslintrc.json {src/**/*.ts,test/**/*.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",
"pre-commit:fix:code": "eslint -c .eslintrc.json --fix",
"pre-commit:fix:prettier": "prettier --write",
"prepare": "husky install"
},
"devDependencies": {
"@dcl/eslint-config": "^1.1.6",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.4",
"@types/node": "^22.13.4",
"@types/uuid": "^9.0.7",
"@well-known-components/interfaces": "^1.5.1",
"@well-known-components/test-helpers": "^1.5.8",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nock": "^13.3.3",
"node-pg-migrate": "^6.2.2",
"nodemon": "^2.0.22",
"socket.io-client": "^4.8.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@dcl/crypto": "^3.4.5",
"@dcl/job-component": "^0.2.8",
"@dcl/memory-cache-component": "^2.2.2",
"@dcl/pg-component": "^0.1.1",
"@dcl/redis-component": "^3.0.1",
"@dcl/schemas": "^9.6.0",
"@sendgrid/mail": "^8.1.6",
"@sentry/node": "10.39.0",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/http-server": "^2.1.0",
"@well-known-components/logger": "^3.1.3",
"@well-known-components/metrics": "^2.0.1",
"@well-known-components/tracer-component": "^1.2.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"decentraland-crypto-fetch": "^2.0.1",
"decentraland-crypto-middleware": "^1.3.0",
"ethers": "^6.15.0",
"express": "^4.18.2",
"socket.io": "^4.7.2",
"sql-template-strings": "^2.2.2",
"uuid": "^9.0.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^5.0.10"
}
}