-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "react-canvas-map",
"version": "0.3.4",
"description": "An interactive canvas-based map component for React.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:bor3ham/react-canvas-map.git",
"author": "Michael Boreham",
"license": "MIT",
"private": false,
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"watch": "node scripts/watch.js",
"build": "node scripts/build.js",
"prepare": "npm run build"
},
"dependencies": {
"classnames": "^2.3.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.2 || ^18.2.0",
"react-dom": "^16.8.0 || ^17.0.2 || ^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"esbuild": "^0.17.19",
"esbuild-stylus-loader": "^0.4.2",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.1.3"
}
}