forked from jimmychu0807/substrate-front-end-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.25 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
{
"name": "substrate-front-end-template",
"version": "0.1.1",
"private": true,
"author": "Parity Technologies <[email protected]>",
"license": "Unlicense",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "CI=true react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"lint": "eslint src/**/*.js",
"lint:ci": "eslint src/**/*.js --max-warnings=0",
"lint:fix": "eslint --fix src/**/*.js",
"predeploy": "yarn build",
"deploy": "gh-pages -d build -m '[ci skip] Updates'"
},
"dependencies": {
"@polkadot/api": "^3.9.3",
"@polkadot/extension-dapp": "^0.37.1",
"@polkadot/keyring": "^5.6.3",
"@polkadot/networks": "^5.6.3",
"@polkadot/types": "^3.9.3",
"@polkadot/ui-keyring": "^0.69.1",
"@polkadot/ui-settings": "^0.69.1",
"@polkadot/util": "^5.6.3",
"@polkadot/util-crypto": "^5.6.3",
"prop-types": "^15.7.2",
"query-string": "^6.13.5",
"react": "^16.14.0",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^16.14.0",
"react-scripts": "^4.0.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^3.1.0",
"react-app-rewired": "^2.1.8",
"semistandard": "^16.0.0"
},
"eslintConfig": {
"extends": [
"react-app",
"semistandard"
],
"plugins": [
"only-warn"
]
},
"engines": {
"node": ">=12",
"npm": ">=6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "https://substrate-developer-hub.github.io/substrate-front-end-template",
"bugs": {
"url": "https://github.com/substrate-developer-hub/substrate-front-end-template/issues"
},
"keywords": [
"substrate",
"substrate-ui",
"polkadot-js"
]
}