forked from chrisrzhou/react-globe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.36 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
{
"name": "react-globe",
"version": "4.0.0",
"description": "Create beautiful and interactive React + ThreeJS globe visualizations with ease.",
"main": "dist/index.js",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"keywords": [
"react",
"globe",
"three",
"threejs",
"webgl",
"visualization",
"interactive",
"earth"
],
"author": "Chris Zhou <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chrisrzhou/react-globe.git"
},
"bugs": {
"url": "https://github.com/chrisrzhou/react-globe/issues"
},
"homepage": "https://react-globe.netlify.com/",
"scripts": {
"build": "rollup -c",
"build:docs": "yarn docz build",
"clean": "rm -rf dist .docz",
"dev": "yarn docz dev",
"lint": "yarn tsc && eslint --ext .js,.jsx,.ts,.tsx src docs",
"lint:fix": "yarn lint --fix",
"prepare": "yarn clean && yarn build",
"size": "bundlesize",
"unused": "yarn no-unused-export src/*.ts* --exclude src/*.d.ts"
},
"dependencies": {
"@types/d3-scale": "^2.1.1",
"d3-scale": "^3.0.0",
"es6-tween": "^5.5.10",
"resize-observer-polyfill": "^1.5.1",
"three-glow-mesh": "^0.1.1",
"three-orbitcontrols": "^2.108.1",
"three.interaction": "^0.2.2",
"tippy.js": "^4.3.5"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.1.0",
"@emotion/core": "^10.0.21",
"@types/react": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"bundlesize": "^0.18.0",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"no-unused-export": "^1.10.0",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-typescript2": "^0.24.3",
"three": "^0.109.0",
"tslib": "1.10.0",
"typescript": "^3.6.4"
},
"bundlesize": [
{
"path": "./dist/*.js",
"maxSize": "1 MB"
}
],
"peerDependencies": {
"react": ">= 16.8.0",
"three": ">= 0.102.0"
}
}