-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.04 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
{
"name": "react-mortal",
"version": "3.3.0",
"description": "An animated react-portal powered by react-motion",
"main": "lib/Mortal.js",
"scripts": {
"build:examples": "BUILD_EXAMPLES=1 webpack",
"build": "babel src -d lib",
"lint": "eslint src examples",
"prettier": "prettier --write \"{src,examples}/**/*.?(js|?(s)css|json)\"",
"start": "webpack-dev-server --content-base examples/ --inline",
"test": "echo no tests yet"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/meriadec/react-mortal.git"
},
"keywords": [
"react",
"react-motion",
"react-portal"
],
"author": "Meriadec Pillet",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/meriadec/react-mortal/issues"
},
"homepage": "https://github.com/meriadec/react-mortal#readme",
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@babel/preset-react",
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions",
"ie >= 11"
],
"node": "current"
}
}
]
]
},
"eslintConfig": {
"extends": [
"zavatta",
"zavatta-react",
"prettier",
"prettier/react"
]
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-motion": "^0.5.0",
"react-portal": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-zavatta": "^6.0.3",
"eslint-config-zavatta-react": "^2.3.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4",
"react-dom": "^16.2.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}