-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
48 lines (48 loc) · 1.52 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
{
"name": "avatar-assets",
"version": "2.0.0",
"description": "Decentraland basic set of avatar assets",
"main": "index.js",
"repository": "https://github.com/decentraland/avatar-assets",
"author": "Decentraland",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"deploy": "npx ts-node -T src/index.ts",
"lint:check": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"test": "jest --forceExit --detectOpenHandles --verbose",
"prepare": "npx ts-node -T src/scripts/prepare.ts",
"emotes": "npx ts-node -T src/scripts/emotes.ts",
"default-profiles": "npx ts-node -T src/scripts/default-profiles.ts"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"devDependencies": {
"@dcl/eslint-config": "^2.0.0",
"@types/argparse": "^2.0.14",
"@types/node": "^20.10.4",
"@well-known-components/test-helpers": "^1.5.5",
"typescript": "<=5.3.3"
},
"dependencies": {
"@dcl/catalyst-api-specs": "^3.2.6",
"@dcl/crypto": "^3.4.5",
"@dcl/schemas": "^11.7.0",
"@dcl/urn-resolver": "^3.3.0",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/fetch-component": "^2.0.2",
"@well-known-components/logger": "^3.1.3",
"argparse": "^2.0.1",
"dcl-catalyst-client": "^21.5.5",
"eth-connect": "^6.2.2",
"gltf-pipeline": "^4.1.0"
}
}