forked from decentraland/builder-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.54 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
{
"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": "npm run build && node ./dist/src/server.js",
"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"
},
"keywords": [
"decentraland"
],
"author": "Decentraland",
"license": "Apache-2.0",
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 80
},
"dependencies": {
"@apollo/client": "^3.3.9",
"@ethersproject/solidity": "^5.0.9",
"@types/escape-html": "0.0.20",
"@types/express": "^4.17.11",
"@types/mime-types": "^2.1.0",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/multer-s3": "^2.7.9",
"@types/pg": "^7.14.9",
"@well-known-components/http-server": "^1.0.0",
"@well-known-components/interfaces": "^1.1.0",
"@well-known-components/metrics": "^1.0.0",
"ajv": "^7.1.0",
"ajv-formats": "^1.5.1",
"aws-sdk": "^2.841.0",
"dcl-catalyst-client": "^4.0.5",
"dcl-crypto": "^2.1.0",
"dcl-ops-lib": "^1.0.6",
"decentraland-commons": "^5.1.0",
"decentraland-server": "^2.14.0",
"decentraland-transactions": "^1.22.2",
"escape-html": "^1.0.3",
"ethers": "^5.0.13",
"express": "^4.16.4",
"express-basic-auth": "^1.2.0",
"express-cache-controller": "^1.1.0",
"express-jwt": "^6.0.0",
"graphql": "^15.5.0",
"isomorphic-fetch": "^2.2.1",
"jwks-rsa": "^1.12.2",
"mime-types": "^2.1.28",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"node-pg-migrate": "^3.21.1",
"prom-client": "^13.1.0",
"tslint": "^6.1.3",
"typescript": "^4.1.5",
"web3x": "^4.0.6"
},
"devDependencies": {
"@types/isomorphic-fetch": "0.0.35",
"@types/node": "^14.14.28",
"@types/uuid": "^3.4.6",
"dcl-tslint-config-standard": "^1.1.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tslint-plugin-prettier": "^2.0.1",
"uuid": "^8.3.2"
}
}