-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.46 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
{
"name": "dapp-boilerplate",
"version": "0.1.0",
"private": true,
"dependencies": {
"@elrondnetwork/erdjs": "^6.6.2",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/react": "^16.14.13",
"@types/react-dom": "^16.9.14",
"@types/react-router-dom": "^5.1.8",
"bignumber": "^1.1.0",
"bignumber.js": "^9.0.1",
"bootstrap": "^4.6.0",
"formik": "^2.2.9",
"i18next": "^20.4.0",
"immer": "^8.0.4",
"moment": "^2.29.1",
"node-sass": "^4.0.0",
"react": "^17.0.2",
"react-bootstrap": "1.4.3",
"react-dom": "^16.13.1",
"react-dropzone": "^11.3.4",
"react-i18next": "^11.11.4",
"react-inlinesvg": "^2.3.0",
"react-modal": "3.12.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-stepper-horizontal": "^1.0.11",
"reinspect": "^1.1.0",
"yup": "^0.32.9"
},
"scripts": {
"start": "HTTPS=true npm run copy-testnet-config & react-scripts start",
"start-dev": "HTTPS=true npm run copy-devnet-config & react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build-mainnet": "npm run copy-mainnet-config & npm run build",
"build-testnet": "npm run copy-testnet-config & npm run build",
"copy-mainnet-config": "cp ./src/config.mainnet.ts ./src/config.ts",
"copy-testnet-config": "cp ./src/config.testnet.ts ./src/config.ts",
"copy-devnet-config": "cp ./src/config.devnet.ts ./src/config.ts"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^14.17.9",
"@types/react-select": "^4.0.17",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.24.0",
"react-select": "^4.3.1",
"typescript": "^4.3.5"
}
}