-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.31 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
{
"name": "ethereum-key-agreement",
"version": "0.12.0",
"description": "Key Agreement Protocols for Ethereum",
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lbeder/ethereum-key-agreement.git"
},
"homepage": ".",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "ts-mocha -b -p ./tsconfig.mocha.json src/**/*.test.*",
"eject": "react-scripts eject",
"format": "prettier --check --write src/**/* --config .prettierrc"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@babel/helper-define-map": "^7.14.5",
"@ethereumjs/tx": "^3.3.0",
"bootstrap": "^4.6.0",
"date-fns": "^2.23.0",
"ethereumjs-util": "^7.1.0",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-copy-to-clipboard": "^5.0.3",
"react-detect-offline": "^2.4.4",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-scripts": "4.0.3",
"react-slick": "^0.28.1",
"react-tooltip": "^4.2.21",
"react-validation": "^3.0.7",
"secp256k1": "^4.0.2",
"slick-carousel": "^1.8.1",
"typeface-roboto-mono": "^1.1.13",
"validator": "^13.6.0",
"web3": "^1.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/dirty-chai": "^2.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.1",
"@types/react": "^17.0.15",
"@types/react-bootstrap": "^0.32.26",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-dom": "^17.0.9",
"@types/react-slick": "^0.23.5",
"@types/react-tooltip": "^4.2.4",
"@types/slick-carousel": "^1.6.37",
"@types/validator": "^13.6.3",
"chai": "^4.3.4",
"dirty-chai": "^2.0.1",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^2.3.3",
"prettier-tslint": "^0.4.2",
"ts-mocha": "^8.0.0",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "~4.3.5"
}
}