-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "address-generator",
"version": "0.1.0",
"private": true,
"author": "IOV SAS <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://iov-one.github.io/address-generator/",
"scripts": {
"lint": "eslint -c .eslintrc.json --max-warnings 0 'src/**/*.ts{,x}'",
"lint-fix": "yarn lint --fix",
"start": "react-scripts start",
"start-https": "HTTPS=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@iov/bcp": "^0.17.0",
"@iov/bns": "^0.17.0",
"@iov/crypto": "^0.17.0",
"@iov/encoding": "^0.17.0",
"@iov/keycontrol": "^0.17.0",
"@iov/ledger-bns": "^0.14.1",
"@ledgerhq/hw-transport-webusb": "^4.68.4",
"@types/node": "^10",
"bootstrap": "^4.3.1",
"clipboard-copy": "^3.1.0",
"react": "^16.9.0",
"react-bootstrap": "^1.0.0-beta.10",
"react-bootstrap-typeahead": "^3.4.7",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.1",
"typescript": "~3.5"
},
"devDependencies": {
"@types/react": "^16.8.25",
"@types/react-bootstrap-typeahead": "^3.4.5",
"@types/react-dom": "^16.8.5",
"@types/react-router-dom": "^4.3.4",
"eslint": "^6",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-simple-import-sort": "^4.0.0",
"gh-pages": "^2.1.1",
"prettier": "^1.18.2"
}
}