-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "react-native-modal-controller",
"version": "1.0.0",
"description": "Handle many modals with ease",
"main": "lib/index.js",
"author": "Henry Kirkness",
"license": "MIT",
"files": [
"lib"
],
"dependencies": {
"react-native-animatable": "^1.3.2"
},
"devDependencies": {
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.13",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.18.2",
"typescript": "^3.6.2"
},
"peerDepencencies": {
"react-native": "*",
"react": "*"
},
"scripts": {
"lint": "eslint ./src --fix",
"prepublish": "yarn build",
"build": "tsc -p ./tsconfig.json --outDir ./lib"
}
}