-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.75 KB
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
{
"name": "creator-hub-monorepo",
"version": "0.0.0-dev",
"dependencies": {
"fast-deep-equal": "3.1.3",
"markdown-to-jsx": "^7.5.0"
},
"devDependencies": {
"@dcl/ecs": "7.24.0",
"@dcl/ts-proto": "1.154.0",
"@testing-library/react": "14.0.0",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "8.57.0",
"eslint-plugin-import": "2.31.0",
"happy-dom": "14.12.3",
"nano-staged": "0.8.0",
"playwright": "1.60.0",
"prettier": "3.5.3",
"simple-git-hooks": "2.11.1",
"syncpack": "13.0.4",
"typescript": "5.5.3",
"vitest": "1.6.0"
},
"overrides": {
"@babylonjs/serializers": "8.7.0",
"ws": "^8.18.0",
"yauzl": "^3.3.1"
},
"private": true,
"repository": "decentraland/creator-hub.git",
"scripts": {
"format": "npx prettier --check \"**/*.{js,ts,tsx,json}\" --log-level=error --ignore-path .gitignore --ignore-path .prettierignore",
"format:fix": "npx prettier --write \"**/*.{js,ts,tsx,json}\" --log-level=error --ignore-path .gitignore --ignore-path .prettierignore",
"lint": "eslint . --ext js,cjs,ts --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"syncpack:fix": "syncpack fix-mismatches --config .syncpackrc.json --source \"packages/*/package.json\" --source \"package.json\"",
"syncpack:format": "syncpack format --config .syncpackrc.json --source \"packages/*/package.json\" --source \"package.json\"",
"syncpack:list-mismatches": "syncpack list-mismatches --config .syncpackrc.json --source \"packages/*/package.json\" --source \"package.json\"",
"test": "npm run test --workspaces",
"typecheck": "npm run typecheck --workspaces"
},
"type": "module",
"workspaces": [
"packages/*"
]
}