forked from vpicone/carbon-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.13 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "carbon-react-native",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "lerna run prepare",
"dev": "yarn workspace @vpicone/example start",
"ios": "yarn workspace @vpicone/example ios",
"android": "yarn workspace @vpicone/example android",
"test": "jest",
"clean": "lerna run clean",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"typescript": "tsc --noEmit --composite false"
},
"resolutions": {
"react": "^16.13.1",
"react-native": "^0.63.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/runtime": "^7.10.5",
"@commitlint/config-conventional": "^9.1.1",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.5",
"@types/react": "^16.9.43",
"@types/react-native": "^0.63.1",
"commitlint": "^9.1.0",
"del-cli": "^3.0.1",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-typescript": "^3.0.0",
"expo-yarn-workspaces": "^1.2.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"metro-react-native-babel-preset": "^0.60.0",
"prettier": "^2.0.5",
"prettier-config-carbon": "^0.2.0",
"react": "^16.13.1",
"react-native": "^0.63.1",
"typescript": "^3.9.7"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
],
"projects": [
"<rootDir>/packages/*"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"typescript",
"typescript/prettier"
],
"rules": {
"multiline-comment-style": [
"error",
"starred-block"
]
}
},
"eslintIgnore": [
"android/",
"ios/",
"lib/",
"story-loader.js"
],
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"*.{css,scss,json,html,yaml}": "prettier --write"
}
}