forked from callstack/react-native-builder-bob
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.31 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.31 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"private": true,
"workspaces": [
"packages/*"
],
"author": "Satyajit Sahoo <satyajit.happy@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/react-navigation/react-navigation.git"
},
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"typescript": "tsc --noEmit",
"watch": "concurrently 'yarn typescript --watch' 'lerna run --parallel prepare -- --watch'"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"commitlint": "^11.0.0",
"concurrently": "^5.3.0",
"eslint": "^7.15.0",
"eslint-config-satya164": "^3.1.8",
"husky": "^4.3.6",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "satya164",
"root": true,
"env": {
"node": true
}
},
"eslintIgnore": [
"node_modules/",
"coverage/",
"lib/",
"templates/"
],
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}