-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.23 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-ol-fiber",
"version": "3.0.2",
"description": "A React renderer for OpenLayers",
"keywords": [
"react",
"renderer",
"fiber",
"ol",
"openlayers",
"map",
"maps"
],
"author": "Giulio Zausa (https://github.com/giulioz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/giulioz/react-ol-fiber/issues"
},
"homepage": "https://github.com/giulioz/react-ol-fiber#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/giulioz/react-ol-fiber.git"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"postbuild": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"eslint": "eslint src --fix --ext=js,ts,tsx,jsx",
"typecheck": "tsc --emitDeclarationOnly",
"test": "jest --coverage",
"vers": "yarn changeset version",
"release": "yarn build && yarn changeset publish",
"changeset:add": "changeset add"
},
"dependencies": {
"react-reconciler": "^0.26.2",
"scheduler": "^0.20.2",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@babel/core": "7.14.8",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "7.15.0",
"@babel/plugin-transform-parameters": "7.14.5",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/plugin-transform-template-literals": "7.14.5",
"@babel/preset-env": "7.14.8",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@changesets/changelog-git": "^0.1.7",
"@changesets/cli": "^2.16.0",
"@react-spring/core": "^9.4.2",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^26.0.8",
"@types/node": "^16.4.13",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-reconciler": "^0.26.2",
"@types/scheduler": "^0.16.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"babel-jest": "^27.3.1",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"ol": "^6.9.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.26.10",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@react-spring/core": ">=9.4.2",
"ol": ">=6.9.0",
"react": ">=17.0",
"react-dom": ">=17.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}