-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
69 lines (69 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nft-server",
"version": "1.0.0",
"description": "NFT server",
"main": "dist/index.js",
"scripts": {
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"build": "tsc -p tsconfig.json",
"watch:build": "tsc -p tsconfig.json --watch",
"start": "ts-node src/index.ts",
"debug": "npm run build && node --inspect ./dist",
"start:watch": "nodemon src/index.ts",
"migrate": "ts-node migrations/index.ts",
"test": "jest",
"test:coverage": "jest --coverage"
},
"keywords": [
"decentraland"
],
"author": "Decentraland",
"license": "Apache-2.0",
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 80
},
"dependencies": {
"@dcl/schemas": "^11.7.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.2",
"@well-known-components/metrics": "^1.1.1",
"@well-known-components/pg-component": "^0.2.1",
"@well-known-components/thegraph-component": "^1.4.3",
"@well-known-components/tracer-component": "^1.2.0",
"ajv": "^8.12.0",
"bn.js": "^5.2.1",
"decentraland-crypto-middleware": "^1.3.0",
"dotenv": "^8.2.0",
"etag": "^1.8.1",
"ethers": "^5.7.2",
"node-fetch": "^2.6.1",
"p-limit": "^3.1.0",
"seedrandom": "^3.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/etag": "^1.8.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.28",
"@types/seedrandom": "^3.0.2",
"@well-known-components/test-helpers": "^1.4.0",
"dcl-tslint-config-standard": "^2.0.0",
"jest": "^27.0.6",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"tslint-plugin-prettier": "^2.3.0"
}
}