forked from element-market/element-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.61 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
{
"name": "element-js-sdk",
"version": "1.1.4",
"description": "Javascript SDK for the www.element.market",
"main": "lib/index.js",
"type": "lib/index.d.ts",
"author": "element.market",
"license": "MIT",
"scripts": {
"publish": "npm publish",
"dev:tsc": " -w -p tsconfig.json",
"eslint": "eslint --fix src --ext .ts --max-warnings=0",
"build:node": "webpack -c config/webpack.node.config.js",
"build:web": "webpack -c config/webpack.config.js",
"start": "webpack --watch",
"dev": "webpack serve --open -c config/webpack.config.js",
"link": "sudo npm link element-sdk",
"test": "cross-env TS_NODE_PROJECT='test/tsconfig.test.json' mocha test/**/**.test.ts",
"cover": "nyc --reporter=html npm run test"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.6.0",
"@ethersproject/abstract-signer": "^5.6.1",
"@txdev/0x-utils": "^1.1.2",
"assert": "^2.0.0",
"axios": "^0.27.2",
"bignumber.js": "^9.0.1",
"buffer": "^6.0.3",
"crypto-browserify": "3.12.0",
"crypto-js": "^4.1.1",
"ethereumjs-util": "^7.1.0",
"ethers": "^5.5.4",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/preset-react": "^7.16.7",
"@ensdomains/ensjs": "^2.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^12.20.41",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^5.15.0",
"antd": "^4.19.3",
"babel-loader": "^8.2.4",
"chai": "^4.3.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"global": "^4.4.0",
"html-webpack-plugin": "^5.5.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sass": "^1.49.10",
"sass-loader": "^12.6.0",
"sinon": "^12.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^5.3.3",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.6.4",
"web3": "^1.7.3",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/element-market/element-js-sdk.git"
},
"homepage": "https://www.element.market"
}