forked from Dekoruma/react-native-web-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.36 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
{
"version": "0.0.2-0",
"description": "React native modal for web",
"repository": "https://github.com/Dekoruma/react-native-web-modal",
"homepage": "https://github.com/Dekoruma/react-native-web-modal#readme",
"bugs": "https://github.com/Dekoruma/react-native-web-modal/issues",
"author": "Ray Andrew <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"clean:allnode": "yarn clean:all && rimraf node_modules",
"clean:all": "yarn clean:build && lerna clean",
"clean:build": "concurrently \"yarn clean:modal\" \"yarn clean:modal-enhanced\"",
"build:all": "yarn build:modal && yarn build:modal-enhanced",
"build:modal": "lerna run --stream --scope=modal-react-native-web build",
"clean:modal": "lerna run --stream --scope=modal-react-native-web clean",
"build:modal-enhanced": "lerna run --stream --scope=modal-enhanced-react-native-web build",
"clean:modal-enhanced": "lerna run --stream --scope=modal-enhanced-react-native-web clean",
"lint": "prettier-eslint --write \"packages/**/*.js\"",
"precommit": "lint-staged"
},
"dependencies": {
"react": "^16.5.2",
"react-art": "^16.5.2",
"react-native-web": "^0.9.3"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"concurrently": "^4.0.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-react-app": "^3.0.4",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.10.0",
"husky": "^1.1.2",
"jest": "^23.3.0",
"lerna": "^3.4.3",
"lint-staged": "^7.2.0",
"onchange": "^5.0.2",
"prettier": "^1.13.7",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"nohoist": [
"**/react-native-animatable",
"**/react-native-animatable/**",
"**/react-lifecycles-compat",
"**/react-lifecycles-compat/**"
]
},
"lint-staged": {
"linters": {
"**/*.js": [
"prettier-eslint --write",
"git add"
]
},
"ignore": [
"**/dist/*.js",
"**/node_modules/**"
]
}
}