-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
119 lines (119 loc) · 3.14 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "decentraland",
"version": "3.18.0",
"description": "Decentraland CLI developer tool.",
"bin": {
"dcl": "dist/index.js"
},
"files": [
"dist",
"samples",
"abi"
],
"scripts": {
"start": "npm run watch",
"watch": "tsc -p tsconfig.json -w",
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"test": "FORCE_COLOR=1 ava -T 5m --verbose",
"test:dry": "FORCE_COLOR=1 ava -T 5m --update-snapshots",
"test:ci": "FORCE_COLOR=1 ava -v --fail-fast -T 5m",
"test:win": "set FORCE_COLOR=1 ava -v --fail-fast -T 5m "
},
"repository": "decentraland/cli",
"keywords": [
"decentraland",
"cli",
"dcl",
"mana",
"land"
],
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"license": "Apache-2.0",
"homepage": "https://github.com/decentraland/cli",
"devDependencies": {
"@dcl/eslint-config": "^2.0.0",
"@types/analytics-node": "^3.1.8",
"@types/archiver": "^5.3.1",
"@types/chalk": "^2.2.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/inquirer": "^8.2.1",
"@types/node": "^17.0.27",
"@types/node-fetch": "^2.6.1",
"@types/puppeteer": "^1.11.2",
"@types/semver": "^7.3.9",
"@types/sinon": "^5.0.5",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"ava": "^4.2.0",
"husky": "^7.0.4",
"puppeteer": "^1.17.0",
"sinon": "^7.1.1",
"ts-node": "^4.1.0"
},
"dependencies": {
"@dcl/crypto": "^3.4.5",
"@dcl/ecs-scene-utils": "^1.7.5",
"@dcl/linker-dapp": "^0.13.0",
"@dcl/mini-comms": "1.0.0",
"@dcl/protocol": "^1.0.0-9254639032.commit-05cd554",
"@dcl/schemas": "^11.9.1",
"@well-known-components/env-config-provider": "^1.1.2-20220801195549.commit-101c273",
"@well-known-components/http-server": "^1.1.6-20220927190058.commit-2dfb235",
"@well-known-components/logger": "^3.0.0",
"@well-known-components/metrics": "^2.0.1-20220909150423.commit-8f7e5bc",
"analytics-node": "^6.0.0",
"archiver": "^5.3.1",
"arg": "^5.0.1",
"body-parser": "^1.20.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"dcl-catalyst-client": "^21.7.0",
"dcl-catalyst-commons": "^9.0.1",
"dcl-node-runtime": "^1.0.0",
"eth-connect": "^6.0.3",
"extract-zip": "^2.0.1",
"fp-future": "^1.0.1",
"fs-extra": "^10.1.0",
"glob": "^8.0.1",
"google-protobuf": "^3.21.2",
"ignore": "^4.0.6",
"inquirer": "^8.2.2",
"isomorphic-fetch": "^3.0.0",
"node-fetch": "^2.6.7",
"opn": "^6.0.0",
"ora": "^5.4.1",
"package-json": "^7.0.0",
"portfinder": "^1.0.28",
"semver": "^7.3.7",
"typescript": "^4.6.3",
"uuid": "^8.3.2",
"wildcards": "^1.0.2",
"ws": "^8.5.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0",
"yarn": "please use npm"
},
"userEngines": {
"minNodeVersion": "14.0.0",
"minNpmVersion": "6.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
}