forked from react-native-community/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 700 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 700 Bytes
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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"lint": "eslint packages",
"flow-check": "flow check"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@callstack/eslint-config": "^3.0.2",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"eslint": "^5.10.0",
"husky": "^1.3.1",
"jest": "^24.0.0-alpha.12"
},
"eslintConfig": {
"extends": "@callstack",
"rules": {
"global-require": 0,
"no-console": 0
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"projects": [
"packages/*"
]
}
}