-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.62 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.62 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
{
"name": "@multiversx/mx-template-dapp",
"description": "MultiversX Dapp Template",
"version": "3.0.1",
"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-regular-svg-icons": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.0",
"@multiversx/sdk-core": "^15.x",
"@multiversx/sdk-dapp": "^5.x",
"@multiversx/sdk-dapp-ui": "^0.x",
"@multiversx/sdk-dapp-utils": "^3.x",
"axios": "1.13.6",
"bignumber.js": "^9.x",
"classnames": "2.3.2",
"luxon": "3.5.0",
"motion": "^12.23.12",
"protobufjs": "^7.5.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-modal-sheet": "^4.4.0",
"react-router-dom": "6.16.0",
"react-tooltip": "^5.28.0"
},
"scripts": {
"lint": "eslint --ext js,ts,tsx 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.49.1",
"@swc/core": "1.3.90",
"@swc/jest": "0.2.29",
"@tailwindcss/cli": "4.0.17",
"@tailwindcss/postcss": "4.1.3",
"@tailwindcss/vite": "4.1.11",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.1",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.5",
"@types/luxon": "3.4.2",
"@types/node": "20.7.1",
"@types/react": "18.2.23",
"@types/react-dom": "^19.1.7",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"@vitejs/plugin-basic-ssl": "1.0.1",
"@vitejs/plugin-react": "4.1.0",
"@wdio/cli": "8.33.1",
"@wdio/concise-reporter": "8.32.4",
"@wdio/local-runner": "8.32.4",
"@wdio/mocha-framework": "8.32.4",
"@wdio/spec-reporter": "8.32.4",
"autoprefixer": "10.4.16",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sort-exports": "0.9.1",
"jest": "29.7.0",
"jest-chain-transform": "^0.0.8",
"jest-environment-jsdom": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"mochawesome-merge": "4.3.0",
"mochawesome-report-generator": "6.2.0",
"postcss": "8.4.30",
"prettier": "3.0.3",
"tailwindcss": "4.0.15",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.2.2",
"vite": "4.5.14",
"vite-plugin-node-polyfills": "0.14.1",
"vite-plugin-svgr": "4.5.0",
"vite-tsconfig-paths": "4.2.1"
},
"pnpm": {
"overrides": {
"nth-check": "2.0.1"
}
}
}