-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.9 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-modality",
"version": "0.0.1",
"description": "A react component for an animated mobile-first modals",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/C0pyR1ght/react-modality"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "Luca Feiser",
"email": "[email protected]",
"url": "http://lucafeiser.de/"
},
"keywords": [
"react",
"react component",
"component",
"fast",
"mobile",
"dialog",
"sheet",
"modal"
],
"main": "lib/index.cjs.js",
"browser": "lib/index.js",
"module": "lib/index.esm.js",
"style": "build/index.css",
"files": [
"/lib"
],
"scripts": {
"start": "styleguidist server",
"build": "rollup -c",
"prepublishOnly": "npm run clean && npm run build",
"postbuild": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"docs:build": "styleguidist build",
"clean": "rimraf ./lib",
"lint": "eslint -c ./.eslintrc.js \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"browserslist": [
">0.2%",
"not dead",
"iOS > 7",
"Android > 3",
"ChromeAndroid > 60",
"Samsung > 0"
],
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"@emotion/cache": "^11.4.0",
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.4.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"framer-motion": "^1.10.3",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2",
"react-feather": "^1.1.6",
"react-fixed-bottom": "^1.0.5",
"react-measure": "^2.3.0",
"react-scrolllock": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-emotion": "^11.0.0",
"babel-plugin-module-resolver": "^4.0.0",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-emotion": "^11.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^3.0.0",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.14.0",
"react-styleguidist": "^11.0.5",
"rimraf": "^2.6.3",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^7.0.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^2.6.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-visualizer": "^4.0.4",
"to-string-loader": "^1.1.6",
"webpack": "^4.42.1"
}
}