-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.45 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
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
{
"name": "@dcl/sites",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"prebuild": "node scripts/prebuild.cjs",
"build": "tsc -b && vite build && node scripts/prerender-hero.mjs",
"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",
"lint:pkg": "npmPkgJsonLint ."
},
"dependencies": {
"@contentful/rich-text-react-renderer": "16.1.6",
"@contentful/rich-text-types": "17.2.5",
"@dcl/core-web3": "^0.12.0",
"@dcl/crypto": "^3.6.0",
"@dcl/hooks": "^1.3.0",
"@dcl/protocol": "^1.0.0-5810343446.commit-4ee6d08",
"@dcl/schemas": "^26.1.0",
"@dcl/single-sign-on-client": "^0.1.0",
"@dcl/social-rpc-client": "^2.0.0",
"@dcl/ui-env": "^2.0.0",
"@hcaptcha/react-hcaptcha": "2.0.2",
"@livekit/components-react": "2.9.21",
"@livekit/components-styles": "1.2.0",
"@magic-ext/oauth2": "15.8.0",
"@marsidev/react-turnstile": "1.1.0",
"@mui/icons-material": "5.16.0",
"@reduxjs/toolkit": "2.12.0",
"@sentry/browser": "9.30.0",
"@tanstack/react-query": "5.101.0",
"dcl-catalyst-client": "21.10.3",
"decentraland-ui2": "^3.13.1",
"dompurify": "3.4.3",
"livekit-client": "2.19.1",
"magic-sdk": "27.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet-async": "2.0.5",
"react-intersection-observer": "10.0.3",
"react-redux": "9.2.0",
"react-router-dom": "7.15.1",
"thirdweb": "5.120.1",
"viem": "2.50.4",
"wagmi": "2.19.5"
},
"devDependencies": {
"@babel/core": "7.28.6",
"@dcl/eslint-config": "^3.0.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/dompurify": "3.0.5",
"@types/jest": "29.5.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.52.0",
"@typescript-eslint/parser": "8.52.0",
"@vercel/node": "5.5.16",
"@vitejs/plugin-react": "6.0.1",
"babel-plugin-module-resolver": "5.0.2",
"dotenv": "17.2.3",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-babel-module": "5.3.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-autofix": "2.2.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.7",
"npm-package-json-lint": "9.1.0",
"prettier": "3.3.2",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.59.2",
"vite": "8.0.13",
"vite-plugin-node-polyfills": "0.28.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/sites.git"
},
"keywords": [
"decentraland",
"dapps",
"template"
],
"author": "Decentraland",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/decentraland/sites/issues"
},
"homepage": "",
"engines": {
"node": "^20.19.0 || >=22.12.0",
"npm": ">=10"
},
"overrides": {
"@types/node": "20.8.3"
}
}