forked from HydroProtocol/hydro-sdk-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 842 Bytes
/
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
{
"name": "@wangleiddex/hydro-sdk-charts",
"version": "0.1.27",
"description": "hydro sdk charts",
"repository": {
"type": "git",
"url": "http://github.com/HydroProtocol/hydro-sdk-charts.git"
},
"main": "./dist/index.js",
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "rm -rf ./dist",
"build": "npm run build-js && npm run build-css",
"build-js": "tsc -p .",
"build-css": "node-sass src/ --output dist"
},
"author": "HydroProtocol",
"license": "Apache-2.0",
"dependencies": {
"bignumber.js": "5",
"react-stockcharts": "^0.7.8"
},
"devDependencies": {
"@types/react": "^16.3.17",
"@types/react-dom": "^16.0.6",
"node-sass": "^4.12.0",
"typescript": "^3.4.3"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}