-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.51 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
{
"name": "react-cesium-fiber",
"version": "0.3.0",
"license": "MIT",
"description": "React-fiber renderer for cesium",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib/*"
],
"author": {
"name": "Hugo Raynal",
"email": "[email protected]"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/RaynalHugo/react-cesium-fiber.git"
},
"homepage": "https://github.com/RaynalHugo/react-cesium-fiber#readme",
"bugs": {
"url": "https://github.com/RaynalHugo/react-cesium-fiber/issues"
},
"keywords": [
"react",
"renderer",
"fiber",
"cesium",
"cesiumjs",
"map",
"3D",
"globe",
"earth"
],
"dependencies": {
"lodash": "4.17.21",
"react-reconciler": "0.25.1"
},
"peerDependencies": {
"cesium": "^1.63.0",
"react": "^16.8.0"
},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@hot-loader/react-dom": "16.13.0",
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-node-resolve": "8.4.0",
"@storybook/addon-actions": "6.0.0-rc.14",
"@storybook/addon-links": "6.0.0-rc.14",
"@storybook/addons": "6.0.0-rc.14",
"@storybook/react": "6.0.0-rc.14",
"@types/cesium": "1.67.10",
"@types/jest": "26.0.10",
"@types/lodash": "4.14.154",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/react-reconciler": "0.18.0",
"babel-loader": "8.1.0",
"builtin-modules": "3.1.0",
"cesium": "1.70.0",
"copy-webpack-plugin": "6.0.2",
"jest": "26.4.2",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-hot-loader": "4.12.21",
"rollup": "2.23.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"ts-jest": "26.3.0",
"ts-node": "9.0.0",
"typescript": "3.9.7",
"webpack": "4.44.0"
},
"scripts": {
"build:lib": "rollup -c ./rollup.config.js",
"build:storybook": "build-storybook -s ./public",
"build:types": "yarn run generate:mapping && tsc --emitDeclarationOnly",
"build": "yarn build:lib && yarn build:types",
"storybook": "source ./.env; start-storybook -p 9009 -s ./public;",
"generate:mapping": "ts-node ./src/utils/generate-types.ts",
"test": "jest"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}