This repository was archived by the owner on Nov 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.6 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
{
"name": "bancor-conversion-widget",
"svelte": "src/index.svelte",
"module": "dist/index.mjs",
"main": "dist/index.js",
"version": "2.2.2",
"scripts": {
"build": "yarn patch:builtins && rollup -c",
"autobuild": "yarn patch:builtins && rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv example",
"start:dev": "sirv example --dev",
"test": "echo \"No test specified\"",
"prepublishOnly": "npm run build",
"deploy": "npm run build && now switch nionis && now --prod ./example",
"patch:builtins": "node ./scripts/patch-builtins.js"
},
"dependencies": {
"bancor-sdk": "0.2.2",
"bignumber.js": "^9.0.0",
"lodash": "^4.17.15",
"svelte-css-vars": "0.0.1",
"svelte-icons": "^2.1.0",
"svelte-select": "3.7.0",
"web3": "^1.2.7"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"dom-testing-library": "^5.0.0",
"jest": "^25.5.4",
"jest-dom": "^4.0.0",
"jest-transform-svelte": "^2.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.7.6",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-svelte": "^5.2.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-visualizer": "^4.0.4",
"sirv-cli": "^0.4.5",
"svelte": "^3.21.0",
"svelte-testing-library": "^1.6.0"
},
"resolutions": {
"asn1.js": "5.2.0",
"bancor-sdk/web3": "^1.2.7"
}
}