-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.7 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
{
"name": "react-world-map",
"version": "2.4.0",
"description": "clickable world map built with React with css changes",
"main": "dist/index.js",
"scripts": {
"build": "babel --extensions \".ts,.tsx\" src -d dist",
"build-demo": "webpack",
"lint": "eslint src/** docs/index.jsx .eslintrc.js webpack.config.js",
"lint-fix": "npm run lint -- --fix",
"tsc": "tsc src/index.tsx --jsx react --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heatherbooker/react-world-map.git"
},
"keywords": [
"react",
"react-component",
"world",
"map",
"clickable",
"select",
"continents"
],
"author": "Heather Booker",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/heatherbooker/react-world-map/issues"
},
"homepage": "https://github.com/heatherbooker/react-world-map#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-loader": "^8.1.0",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0"
}
}