-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.63 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
94
95
96
97
98
99
100
{
"name": "subdex-ui",
"private": true,
"keywords": [
"subdex",
"subdex-ui",
"polkadot-js"
],
"bugs": {
"url": "https://github.com/subdarkdex/subdex-ui/issues"
},
"repository": {
"url": "https://github.com/subdarkdex/subdex-ui"
},
"license": "Apache 2.0",
"author": "Subdex team <[email protected]>",
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"integration-test": "start-server-and-test 'serve build -l 3000' http://localhost:3000 'cypress run'",
"lint": "eslint src/**",
"lint:ci": "eslint src/** --max-warnings=0",
"predeploy": "yarn build",
"start": "react-scripts start",
"test": "CI=true react-scripts test --env=jsdom"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,json}": [
"prettier --write"
],
"**/*.{js}": [
"eslint --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@polkadot/api": "~2.8.2",
"@polkadot/extension-dapp": "^0.34.1",
"@polkadot/keyring": "3.5.1",
"@polkadot/react-identicon": "0.59.1",
"@polkadot/types": "~2.8.2",
"@polkadot/ui-keyring": "0.59.1",
"@polkadot/ui-settings": "0.59.1",
"@polkadot/util": "3.5.1",
"@polkadot/util-crypto": "3.5.1",
"bignumber.js": "^9.0.1",
"prop-types": "^15.7.2",
"query-string": "^6.13.2",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-tippy": "^1.4.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^1.2.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@testing-library/react": "^11.0.4",
"@testing-library/react-hooks": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest-localstorage-mock": "^2.4.3",
"jest-matchmedia-mock": "^1.1.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"react-test-renderer": "^16.13.1",
"start-server-and-test": "^1.11.4"
},
"engines": {
"node": ">=12.13.0"
}
}