forked from Wolox/wolmo-bootstrap-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.99 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
{
"name": "generator-wolmo-bootstrap-rn",
"version": "1.9.0",
"description": "A project generator for react native applications with some boilerplates already configured and ready to use.",
"files": [
"generators"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Wolox/wolmo-bootstrap-react-native.git"
},
"keywords": [
"yeoman-generator",
"react-native"
],
"author": "Wolox",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wolox/wolmo-bootstrap-react-native/issues"
},
"homepage": "https://github.com/Wolox/wolmo-bootstrap-react-native#readme",
"scripts": {
"lint": "eslint .",
"lint-diff": "git diff --staged --name-only --relative --diff-filter=ACM | grep -E \"\\.(ts|tsx|js|jsx)$\" | xargs eslint",
"lint-fix": "eslint . --fix"
},
"dependencies": {
"acorn": "^7.1.1",
"apisauce": "^2.0.1",
"colors": "^1.1.2",
"deep-extend": "^0.5.1",
"diff": "^3.5.0",
"fs": "0.0.1-security",
"latest-semver": "^1.0.0",
"minimist": "^1.2.5",
"ora": "^1.1.0",
"semver-regex": "^1.0.0",
"yeoman-generator": "^4.13.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-wolox-react-native": "^1.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^4.2.5",
"prettier": "^2.0.4",
"prettier-eslint": "^9.0.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint-diff"
}
}
}