forked from hamidra/dotdrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.67 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
101
102
103
104
{
"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 'deploy'"
},
"dependencies": {
"@polkadot/api": "^5.4.1",
"@polkadot/extension-dapp": "^0.39.2",
"@polkadot/keyring": "^7.1.1",
"@polkadot/networks": "^7.1.1",
"@polkadot/react-identicon": "^0.84.3",
"@polkadot/react-qr": "^0.84.3",
"@polkadot/types": "^5.4.1",
"@polkadot/ui-keyring": "^0.84.3",
"@polkadot/ui-settings": "^0.84.3",
"@polkadot/util": "^7.1.1",
"@polkadot/util-crypto": "^7.1.1",
"bn.js": "^5.2.0",
"bootstrap": "^4.6.0",
"file-saver": "^2.0.5",
"formik": "^2.2.8",
"node-sass": "^6.0.1",
"phosphor-react": "^1.2.1",
"prop-types": "^15.7.2",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
"react-confetti": "^6.0.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.2",
"react-use": "^17.2.4",
"styled-components": "^5.2.1",
"yup": "^0.32.9"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-semistandard": "^16.0.0",
"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": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^3.1.0",
"react-app-rewired": "^2.1.8",
"semistandard": "^16.0.0"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"react-hooks/exhaustive-deps": "off"
},
"extends": [
"react-app",
"semistandard"
],
"plugins": [
"only-warn"
]
},
"eslintIgnore": [
"node_modules",
"build/*"
],
"engines": {
"node": ">=14",
"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": "http://hamidra.github.io/dotdrop",
"bugs": {
"url": "https://github.com/hamidra/dotdrop/issues"
},
"keywords": [
"substrate",
"polkadot-js"
]
}