-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "atlas-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/index.js",
"start:dev": "nodemon src/index.ts",
"build": "tsc",
"test": "jest"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 80
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@dcl/schemas": "^9.8.0",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/http-requests-logger-component": "^2.1.0",
"@well-known-components/http-server": "^1.1.6",
"@well-known-components/http-tracer-component": "^1.1.0",
"@well-known-components/interfaces": "^1.2.0",
"@well-known-components/logger": "^3.1.3",
"@well-known-components/metrics": "^2.0.1",
"@well-known-components/thegraph-component": "^1.6.0",
"@well-known-components/tracer-component": "^1.2.0",
"canvas": "^2.11.2",
"cli-progress": "^3.9.0",
"ethers": "^5.7.2",
"fp-future": "^1.0.1",
"node-fetch": "^2.6.1",
"p-limit": "^3.1.0"
},
"devDependencies": {
"@types/cli-progress": "^3.9.1",
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"nodemon": "^2.0.22",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}