-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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": "react-dex-chart",
"displayName": "React DEX chart",
"version": "1.0.2",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debased/react-dex-chart.git"
},
"keywords": [],
"author": "",
"homepage": "https://github.com/debased/react-dex-chart",
"license": "MIT",
"bugs": {
"url": "https://github.com/debased/react-dex-chart/issues"
},
"description": "📈 A Chart Component built with React, Lightweight-Charts - by debased dao",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"lib/**/*"
],
"dependencies": {
"@types/node": "^16.11.43",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"bootstrap-icons": "^1.8.3",
"lightweight-charts": "^3.8.0",
"react-bootstrap-icons": "^1.8.4",
"react-colorful": "^5.5.1",
"react-draggable": "^4.4.5",
"styled-components": "^5.3.5",
"typescript": "^4.7.4",
"web-vitals": "^2.1.4"
},
"peerDependencies": {
"react": ">17.0.0",
"react-dom": ">17.0.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"typescript": "^4.7.4"
}
}