forked from PostHog/posthog-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "@internal/posthog-react-native",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"core",
"TestApp"
],
"nohoist": [
"**/react-native",
"**/react-native/**"
]
},
"scripts": {
"core": "yarn workspace posthog-react-native",
"TestApp": "yarn workspace TestApp",
"build:core": "yarn core build",
"build": "run-s build:*",
"test:core": "yarn core test",
"test": "run-p test:*",
"lint:prettier": "prettier $(git ls-files '**/*.ts' '**/*.js' '**/*.json' '**/*.md') --list-different",
"lint:core": "yarn core lint",
"lint": "run-s lint:*",
"deploy": "run-s 'core deploy'",
"precommit": "lint-staged",
"run:ios": "yarn TestApp ios"
},
"lint-staged": {
"core/src/**/*.ts": [
"prettier --write",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.4.0",
"codecov": "^3.0.4",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"react": "16.8.3",
"react-native": "0.59.2",
"rimraf": "^2.6.2"
}
}