-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.32 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
{
"name": "@dcl/squid-management-ui-site",
"version": "0.0.1",
"description": "Starter template for Decentraland dApps Repositories",
"main": "index.js",
"type": "module",
"scripts": {
"init": "./start.sh && npm run husky-setup",
"dev": "vite",
"start": "vite",
"prebuild": "node scripts/prebuild.cjs",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"prepare": "husky",
"precommit": "lint-staged --config .husky/pre-commit.js",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,mdx,css}'",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/decentraland/dapps-template.git"
},
"author": "Decentraland",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/decentraland/dapps-template/issues"
},
"homepage": "",
"engines": {
"node": "20.*",
"npm": "8.* || 9.*"
},
"dependencies": {
"@dcl/schemas": "^15.1.1",
"@dcl/ui-env": "^1.4.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.7",
"@mui/material": "^6.1.7",
"decentraland-ui2": "^0.6.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@dcl/eslint-config": "^2.2.1",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-jest": "^3.0.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-autofix": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"vite": "^5.3.1",
"vite-plugin-svgr": "^4.3.0"
},
"overrides": {
"@types/node": "20.8.3"
},
"keywords": [
"decentraland",
"dapps",
"template"
]
}