forked from onflow/flow-cadence-eth-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.25 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.25 KB
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
{
"name": "flow-cadence-eth-utils",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "jest --runInBand",
"build": "webpack --mode production",
"dev": "lite-server",
"watch": "webpack --watch --mode development"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ethereumjs/util": "^9.0.0",
"@onflow/fcl": "1.14.0",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.1.0",
"i": "^0.3.7",
"npm": "^10.2.2",
"secp256k1": "^5.0.0",
"watchify": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@onflow/flow-js-testing": "^0.6.0",
"babel-jest": "^29.6.1",
"babel-loader": "^10.0.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"jest": "^29.6.1",
"jest-environment-node": "^29.6.1",
"lite-server": "^2.6.1",
"webpack": "^5.98.0",
"webpack-cli": "^5.1.4"
},
"keywords": [],
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
],
"global": true,
"ignore": [
"/node_modules/(?!(@onflow))"
]
}
]
]
},
"sideEffects": [
"*.css",
"./src/polyfills.js"
]
}