-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
90 lines (90 loc) · 2.35 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
{
"name": "react-native-dom-monorepo",
"version": "0.0.2",
"private": true,
"description": "",
"keywords": [],
"homepage": "https://github.com/vincentriemer/react-native-dom",
"bugs": {
"url": "https://github.com/vincentriemer/react-native-dom/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/vincentriemer/react-native-dom.git"
},
"license": "MIT",
"author": {
"name": "Vincent Riemer",
"email": "[email protected]",
"url": "https://vincentriemer.com"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/@babel/runtime",
"**/@abel/runtime/**",
"**/pepjs",
"**/pepjs/**",
"**/webcomponentsjs",
"**/webcomponentsjs/**",
"**/web-animations-js",
"**/web-animations-js/**",
"**/react-native-dom/**"
]
},
"scripts": {
"clean": "shx rm -rf packages/*/lib",
"precommit": "lint-staged",
"compile": "lerna run compile --stream",
"compile:components": "lerna run compile --scope rndom-* --stream",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"fmt": "prettier --write 'packages/**/*.js'",
"lint": "flow check && eslint packages",
"release:canary": "lerna publish minor --canary --yes",
"run-examples": "cd packages/react-native-dom && yarn run-examples",
"test": "lerna run test",
"test:smoke": "node scripts/smoke.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"all-contributors-cli": "^4.11.1",
"babel-eslint": "^8.2.3",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.1",
"eslint-import-resolver-lerna": "^1.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^2.6.0",
"flow-bin": "0.89.0",
"husky": "^0.14.3",
"lerna": "3.4.3",
"lint-staged": "^7.2.2",
"prettier": "^1.12.1",
"shelljs": "^0.8.2",
"shx": "^0.2.2",
"sort-package-json": "^1.13.0",
"wait-port": "^0.2.2"
},
"lint-staged": {
"package.json": [
"sort-package-json",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}