generated from multiversx/mx-template-dapp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 2.88 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
{
"name": "@elrondnetwork/dapp-template",
"description": "Elrond Dapp Template",
"version": "0.2.0",
"author": "ElrondNetwork",
"license": "GPL-3.0-or-later",
"repository": "@elrondnetwork/dapp-template",
"dependencies": {
"@elrondnetwork/dapp-core": "1.0.0",
"@elrondnetwork/dapp-utils": "0.1.3",
"@elrondnetwork/erdjs": "9.0.3",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.4.2",
"@ramonak/react-progress-bar": "^4.4.0",
"apexcharts": "^3.33.1",
"axios": "0.21.1",
"bootstrap": "4.6.0",
"legends": "^1.1.0",
"moment": "2.29.1",
"react": "17.0.2",
"react-apexcharts": "^1.3.9",
"react-bootstrap": "2.1.2",
"react-countdown": "^2.3.2",
"react-dom": "17.0.2",
"react-router-dom": "6.2.1",
"react-scripts": "4.0.3",
"typescript": "4.1.2",
"web-vitals": "1.0.1"
},
"scripts": {
"start": "react-scripts start",
"start-testnet": "npm run copy-testnet-config & npm run start",
"start-devnet": "npm run copy-devnet-config & npm run start",
"build": "react-scripts build",
"build-testnet": "npm run copy-testnet-config & npm run build",
"build-devnet": "npm run copy-devnet-config & npm run build",
"test": "react-scripts test",
"copy-testnet-config": "cp ./src/config.testnet.tsx ./src/config.tsx",
"copy-devnet-config": "cp ./src/config.devnet.tsx ./src/config.tsx",
"eject": "react-scripts eject",
"lint": "eslint --ext js,ts,tsx src"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "26.0.15",
"@types/node": "12.0.0",
"@types/react": "17.0.7",
"@types/react-dom": "17.0.0",
"@types/react-router-dom": "5.1.7",
"@types/react-vis": "^1.11.10",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-react": "1.1.7",
"eslint-config-react-app": "6.0.0",
"eslint-config-standard": "16.0.2",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"node-sass": "6.0.1",
"prettier": "2.3.2"
},
"resolutions": {
"//": "See https://github.com/facebook/create-react-app/issues/11773",
"react-error-overlay": "6.0.9"
}
}