-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"name": "template-server",
"scripts": {
"build": "tsc -p tsconfig.json",
"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"
},
"devDependencies": {
"@dcl/eslint-config": "^2.2.1",
"@types/node": "^20.2.5",
"@well-known-components/test-helpers": "^1.5.8",
"typescript": "^4.8.3"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"dependencies": {
"@dcl/schemas": "^7.4.1",
"@well-known-components/env-config-provider": "^1.1.1",
"@well-known-components/http-server": "^2.0.0",
"@well-known-components/interfaces": "^1.4.1",
"@well-known-components/logger": "^3.1.2",
"@well-known-components/metrics": "^2.0.1-20220909150423.commit-8f7e5bc",
"@well-known-components/pushable-channel": "^1.0.3",
"aws-sdk": "^2.739.0",
"fast-glob": "^3.3.2",
"p-queue": "6.6.2"
}
}