-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 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
{
"name": "react-trip-animation",
"version": "0.3.0",
"description": "A powerful component to create trip animations",
"main": "dist/TripAnimation.js",
"scripts": {
"build:demo": "./node_modules/.bin/webpack --config webpack.config.demo.js --colors --progress",
"build:prod": "./node_modules/.bin/webpack --config webpack.config.prod.js --colors --progress",
"dev": "webpack-dev-server --config webpack.config.dev.js --hot --inline",
"build:all": "npm run build:demo && npm run build:prod",
"postversion": "git push && git push --tags && npm publish",
"version": "auto-changelog -p && git add CHANGELOG.md && npm run build:all && git add -A ./dist/ ./public"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mschez/react-trip-animation.git"
},
"keywords": [
"animation",
"cities",
"destination",
"fly",
"journey",
"leaflet",
"map",
"origin",
"place",
"plane",
"react",
"svg",
"travel",
"trip"
],
"author": {
"name": "Miguel Sánchez",
"email": "mschezes@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mschez/react-trip-animation/issues"
},
"homepage": "https://github.com/mschez/react-trip-animation#readme",
"peerDependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1"
},
"dependencies": {
"leaflet": "^1.7.1",
"prop-types": "^15.7.2",
"react-leaflet": "^2.7.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"@hot-loader/react-dom": "^16.13.0",
"auto-changelog": "^2.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.3",
"react-addons-test-utils": "^15.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "4.13.0",
"resolve-url-loader": "^3.1.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "3.11.0",
"webpack-merge": "^5.1.4"
}
}