-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "@developmentseed/stac-react",
"version": "0.1.0-alpha.10",
"description": "React components and hooks for building STAC-API front-ends",
"repository": "[email protected]:developmentseed/stac-react.git",
"author": "Oliver Roick <[email protected]>",
"license": "MIT",
"private": false,
"main": "./dist/stac-react.cjs",
"module": "./dist/stac-react.es.mjs",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^9.0.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/react-hooks": "^8.0.0",
"@types/geojson": "^7946.0.8",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^3.4.0",
"rollup-plugin-dts": "^5.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
},
"scripts": {
"test": "jest",
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'",
"build": "rollup -c rollup.config.mjs"
},
"dependencies": {}
}