-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 849 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 849 Bytes
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.38",
"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": {
"@wlchn/react-stockcharts": "0.7.15",
"bignumber.js": "5"
},
"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"
}
}