-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
102 lines (102 loc) · 3.29 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
{
"name": "@dcl/account-site",
"version": "0.0.0-development",
"type": "module",
"dependencies": {
"@dcl/schemas": "^15.0.0",
"@dcl/single-sign-on-client": "^0.1.0",
"@dcl/ui-env": "^1.4.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@maticnetwork/maticjs": "^3.8.2",
"@maticnetwork/maticjs-ethers": "^1.1.0",
"@sentry/react": "^7.64.0",
"@typechain/ethers-v5": "^10.0.0",
"decentraland-dapps": "^23.17.0",
"decentraland-transactions": "^2.6.0",
"decentraland-ui": "^6.12.1",
"decentraland-ui2": "^0.0.2",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"ethers": "^5.7.2",
"history": "^4.10.1",
"react": "^17.0.2",
"react-app-polyfill": "^2.0.0",
"react-dev-utils": "^11.0.3",
"react-dom": "^17.0.2",
"react-redux": "^7.2.2",
"react-refresh": "^0.8.3",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-saga": "^1.3.0",
"reselect": "4.0.0",
"ts-case-convert": "^2.0.7",
"typechain": "^8.0.0",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@dcl/eslint-config": "^2.0.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@swc/core": "^1.4.13",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.5.2",
"@types/history": "^4.7.3",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.6",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@types/react-router-dom": "^5.1.7",
"@types/redux-logger": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-basic-ssl": "^1.0.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-autofix": "^2.0.0",
"eslint-plugin-css-import-order": "^1.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-fetch": "^2.7.0",
"prettier": "^3.2.5",
"redux-saga-test-plan": "^4.0.6",
"rollup-plugin-polyfill-node": "^0.13.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.2.8"
},
"scripts": {
"start": "vite",
"prebuild": "node scripts/prebuild.cjs",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"build": "tsc && vite build",
"build:contracts": "typechain --target ethers-v5 --out-dir src/contracts src/contracts/*.json",
"check:code": "eslint ./src --ext .ts,.tsx,.js,.jsx",
"fix:code": "npm run check:code -- --fix",
"fix:prettier": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,md,mdx,css}'",
"pre-commit:fix:code": "eslint --fix",
"prepare": "husky"
},
"engines": {
"node": "^20"
},
"repository": {
"type": "git",
"url": "https://github.com/decentraland/account.git"
},
"homepage": ""
}