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
55 lines (55 loc) · 1.18 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.18 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
{
"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": {
"@arkweid/lefthook": "^0.7.7",
"@commitlint/config-conventional": "^17.0.2",
"commitlint": "^17.0.2",
"concurrently": "^7.2.2",
"eslint": "^8.18.0",
"eslint-config-satya164": "^3.1.11",
"lerna": "^5.1.4",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"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
}
}