-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.97 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
{
"name": "@multiversx/mx-template-dapp",
"description": "MultiversX Dapp Template",
"version": "3.0.2",
"author": "MultiversX",
"license": "GPL-3.0-or-later",
"repository": "@multiversx/mx-template-dapp",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^3.3.1",
"@multiversx/sdk-core": "^15.4.1",
"@multiversx/sdk-dapp": "^5.7.1",
"@multiversx/sdk-dapp-ui": "^0.1.24",
"@multiversx/sdk-dapp-utils": "^3.1.0",
"axios": "^1.18.1",
"bignumber.js": "^9.3.1",
"classnames": "^2.5.1",
"luxon": "^3.7.2",
"protobufjs": "^7.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal-sheet": "^4.4.0",
"react-router-dom": "^6.16.0",
"react-tooltip": "^5.30.0"
},
"scripts": {
"lint": "eslint src --fix",
"start-devnet": "npm run copy-devnet-config & vite dev",
"start-testnet": "npm run copy-testnet-config & vite dev",
"start-mainnet": "npm run copy-mainnet-config & vite dev",
"build-devnet": "tsc & npm run copy-devnet-config & vite build",
"build-testnet": "tsc & npm run copy-testnet-config & vite build",
"build-mainnet": "tsc & npm run copy-mainnet-config & vite build",
"copy-devnet-config": "cp ./src/config/config.devnet.ts ./src/config/index.ts",
"copy-testnet-config": "cp ./src/config/config.testnet.ts ./src/config/index.ts",
"copy-mainnet-config": "cp ./src/config/config.mainnet.ts ./src/config/index.ts",
"test": "jest",
"run-playwright-test": "playwright test",
"run-playwright-test-ui": "playwright test --ui"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@playwright/test": "^1.61.1",
"@swc/core": "^1.15.43",
"@swc/jest": "^0.2.39",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.7.2",
"@types/node": "^24.0.0",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.23",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^6.0.3",
"autoprefixer": "^10.5.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.5.0",
"jest": "^29.7.0",
"jest-chain-transform": "^0.0.8",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"postcss": "^8.5.16",
"prettier": "^3.9.4",
"tailwindcss": "^4.3.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.3",
"vite-plugin-node-polyfills": "^0.28.0",
"vite-plugin-svgr": "^5.2.0"
}
}