-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
98 lines (98 loc) · 3.17 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "builder-server",
"version": "2.10.0",
"description": "Builder server",
"main": "server.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/server.ts",
"watch:start": "nodemon src/server.ts",
"migrate": "ts-node ./migrations/migrate.ts",
"migrate:docker": "./migrations/node-pg-migrate --database-url-var CONNECTION_STRING --migration-file-language ts --migrations-dir /app/migrations --ignore-pattern '\\..*|.*migrate(.ts)?'",
"seed": "cp -r ./scripts/seed/*_data ./dist/scripts/seed && node ./dist/scripts/seed/index.js",
"migrate-assetpacks": "node ./dist/scripts/migrate-assetpacks.js",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage --config jest.config.ci.js"
},
"keywords": [
"decentraland"
],
"author": "Decentraland",
"license": "Apache-2.0",
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 80
},
"dependencies": {
"@apollo/client": "^3.3.9",
"@dcl/crypto": "^3.0.1",
"@dcl/hashing": "^1.1.0",
"@dcl/platform-crypto-middleware": "^1.0.2",
"@dcl/schemas": "^13.2.3",
"@ethersproject/solidity": "^5.7.0",
"@types/escape-html": "0.0.20",
"@types/express": "^4.17.11",
"@types/mime-types": "^2.1.0",
"@types/morgan": "^1.9.2",
"@types/pg": "^7.14.9",
"@types/uuid": "^8.3.1",
"@well-known-components/fetch-component": "^2.0.1",
"@well-known-components/http-server": "^1.0.0",
"@well-known-components/interfaces": "^1.1.0",
"@well-known-components/logger": "^1.1.0",
"@well-known-components/metrics": "^1.0.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"aws-sdk": "^2.841.0",
"cids": "^0.7.2",
"content-hash": "^2.5.2",
"cors": "^2.8.5",
"dcl-catalyst-client": "^21.5.0",
"decentraland-commons": "^5.2.0",
"decentraland-server": "^3.1.0",
"decentraland-transactions": "^2.13.0",
"escape-html": "^1.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-cache-controller": "^1.1.0",
"form-data": "^4.0.0",
"graphql": "^15.5.0",
"interface-datastore": "^0.7.0",
"ipfs-unixfs-engine": "^0.35.4",
"mime-types": "^2.1.35",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.9",
"node-pg-migrate": "^6.2.2",
"prom-client": "^13.1.0",
"pull-stream": "^3.6.12",
"tslint": "^6.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@swc/core": "^1.2.102",
"@swc/jest": "^0.2.22",
"@types/interface-datastore": "^1.0.0",
"@types/jest": "^27.0.1",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.7.9",
"@types/node": "^14.14.28",
"@types/node-fetch": "^2.6.2",
"@types/pull-stream": "^3.6.2",
"@types/supertest": "^2.0.12",
"dcl-tslint-config-standard": "^1.1.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.2.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^5.0.2"
}
}