forked from derion-io/trade-comp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 4.05 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "exposure-comp",
"version": "1.0.0",
"author": "Derivable",
"license": "MIT",
"repository": "derivable-labs/exposure-comp",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
},
"scripts": {
"mockup:watch": "cd mockup && run-s watch",
"mockup:build": "cd mockup && run-s build",
"build:configs": "microbundle-crl --entry src/configs.tsx --output dist/configs.js --format modern,cjs --css-modules false",
"build:component": "microbundle-crl --entry src/component.tsx --output dist/component.js --format modern,cjs --css-modules false --no-compress",
"build": "yarn build:configs && yarn build:component",
"start": "yarn build:configs && microbundle-crl --entry src/component.tsx --output dist/component.js --format modern,cjs --css-modules false --no-compress watch",
"watch": "yarn build:configs && microbundle-crl --entry src/component.tsx --output dist/component.js --format modern,cjs --css-modules false --no-compress watch",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"delock": "sed -i '/resolved.*derivable.*/d' yarn.lock",
"format": "eslint --ext ts,tsx src --fix; prettier --write 'src/**/*.{ts,tsx}'",
"lint": "eslint --ext ts,tsx src --fix",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"@types/desmos": "^1.6.0",
"@types/lodash": "^4.14.186",
"@types/react-collapse": "^5.0.1",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-sdk": "^3.9.0",
"antd": "^5.8.4",
"assisted-json-rpc-provider": "git+ssh://git@github.com:derivable-labs/AssistedJsonRpcProvider.git#dev",
"caniuse-lite": "^1.0.30001434",
"derivable-tools": "git+ssh://git@github.com:derivable-labs/derivable-tools.git#dev-build",
"desmos-react": "^1.2.0",
"ethereum-multicall": "^2.15.0",
"ethers": "^5.4.6",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"html-to-image": "^1.11.11",
"leverage-slider": "git+ssh://git@github.com:derivable-labs/leverage-slider-comp.git",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"move-decimal-point": "^0.0.4",
"rc-slider": "^10.0.1",
"react-collapse": "^5.1.1",
"react-fast-compare": "^3.2.0",
"react-redux": "^7.2.5",
"react-router-dom": "^5.2.0",
"react-tabs": "^6.0.0",
"react-toastify": "^8.1.0",
"reactstrap": "^9.1.5",
"recharts": "^2.2.0",
"redux": "^4.1.1",
"redux-localstorage-simple": "^2.4.1",
"redux-thunk": "^2.3.0",
"swr": "^2.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.38",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.7",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "4",
"@typescript-eslint/parser": "4",
"@web3-react/core": "^6.1.9",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react-scripts": "^3.4.1",
"sass": "^1.38.2",
"sass-loader": "^12.1.0",
"typescript": "^3.7.5"
},
"files": [
"dist"
]
}