This repository has been archived by the owner on Jun 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 1.97 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
{
"name": "moonbeam-frontend-proof-of-concept",
"version": "0.1.0",
"private": true,
"author": "PureStake <contact@purestake.com>",
"license": "Unlicense",
"dependencies": {
"@polkadot/api": "^0.99.1",
"@polkadot/extension-dapp": "^0.14.1",
"@polkadot/keyring": "^1.7.1",
"@polkadot/react-identicon": "^0.47.1",
"@polkadot/ui-keyring": "^0.47.1",
"@polkadot/util": "^1.7.1",
"@polkadot/util-crypto": "^1.7.1",
"big.js": "^5.2.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.3.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.0",
"toformat": "^2.0.0"
},
"devDependencies": {
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-only-warn": "^1.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.1.1"
},
"scripts": {
"start": "PORT=8000 react-scripts start",
"build": "react-scripts build",
"test": "CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src/**",
"lint:ci": "eslint src/** --max-warnings=0",
"lint:fix": "eslint --fix src/**",
"predeploy": "yarn build",
"deploy": "gh-pages -d build -m '[ci skip] Updates'"
},
"eslintConfig": {
"extends": [
"react-app",
"standard"
],
"plugins": [
"only-warn"
],
"rules": {
"semi": [
1,
"always"
],
"no-extra-semi": 1
}
},
"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://github.com/PureStake/moonbeam-ui",
"bugs": {
"url": "https://github.com/PureStake/moonbeam-ui/issues"
},
"keywords": [
"moonbeam",
"moonbeam-ui"
]
}