forked from multiversx/mx-sdk-dapp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.12 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.12 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
{
"name": "@elrondnetwork/dapp-core",
"version": "1.0.22",
"description": "A library to hold the main logic for a dapp on the Elrond Network",
"author": "ElrondNetwork",
"license": "GPL-3.0-or-later",
"repository": "ElrondNetwork/dapp-core",
"main": "build/index.js",
"module": "build/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "npm run copy-prod & microbundle-crl --no-compress --format modern,cjs --css-modules false ",
"start": "npm run copy-dev & microbundle-crl watch --no-compress --format modern,cjs --css-modules false",
"prepare": "run-s build",
"test": "run-s test:unit test:build",
"test:build": "run-s build",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"copy-dev": "cp src/optionalPackages/dev/* src/optionalPackages",
"copy-prod": "cp src/optionalPackages/prod/* src/optionalPackages"
},
"devDependencies": {
"@babel/eslint-parser": "7.16.5",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "9.5.0",
"@testing-library/user-event": "7.2.1",
"@types/jest": "27.4.0",
"@types/lodash": "4.14.178",
"@types/node": "14.14.44",
"@types/platform": "1.3.4",
"@types/qrcode": "1.4.2",
"@types/qs": "6.9.7",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"cross-env": "7.0.3",
"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-config-standard-react": "9.2.0",
"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",
"microbundle-crl": "0.13.11",
"node-sass": "^6.0.1",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"run-script-os": "1.1.5",
"typescript": "4.1.2"
},
"files": [
"build"
],
"keywords": [
"elrond",
"blockchain",
"dapp",
"smart-contract",
"transaction"
],
"peerDependencies": {
"react": "~17.0"
},
"optionalDependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-solid-svg-icons": "5.15.3",
"@fortawesome/react-fontawesome": "0.1.14",
"bootstrap": "4.6.0",
"classnames": "2.3.1",
"moment": "2.29.1",
"platform": "1.3.6",
"qrcode": "1.5.0",
"react-bootstrap": "2.0.3",
"swr": "1.1.2"
},
"dependencies": {
"@elrondnetwork/dapp-utils": "0.1.3",
"@elrondnetwork/erdjs": "9.1.0",
"@reduxjs/toolkit": "1.6.2",
"@testing-library/jest-dom": "^5.16.2",
"axios": "0.21.4",
"bignumber.js": "9.x",
"lodash": "4.17.21",
"qs": "6.10.3",
"react-redux": "7.2.6",
"redux-persist": "6.0.0",
"reselect": "4.0.0"
}
}