-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.28 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
{
"name": "@flexn/build-hooks-monorepo",
"private": true,
"scripts": {
"bootstrap": "(rnv unlink|| true) && npx lerna bootstrap && yarn build",
"bootstrap-clean": "rm -rf ./node_modules; npx lerna clean --yes && yarn bootstrap",
"build": "lerna run build",
"watch-alt": "npx lerna run compile & npx lerna watch -- lerna run compile",
"watch": "npx lerna exec yarn watch --parallel",
"compile": "npx lerna run compile",
"lint": "npx eslint ./packages",
"test": "npx jest --coverage",
"test-watch": "npx jest --watch",
"sanity": "yarn compile && yarn lint && yarn test",
"prettier-write-all": "npx prettier '**/*.{js,jsx,ts,tsx,mjs,cjs,json,md}' --write --config .prettierrc.js",
"prettier-write-json": "npx prettier '**/{package.json,renative.plugins.json,renative.json}' --write --config .prettierrc.js",
"deploy:prod": "lerna version --no-private && lerna publish from-package",
"deploy:preview": "lerna version --no-private && lerna publish from-package --dist-tag preview",
"deploy:canary": "lerna version --no-private && lerna publish from-package --dist-tag canary",
"deploy:feat": "lerna version --no-private && lerna publish from-package --dist-tag feat",
"deploy:lts": "lerna version --no-private && lerna publish from-package --dist-tag lts"
},
"devDependencies": {
"@flexn/eslint-config": "1.0.0",
"@flexn/prettier-config": "1.0.0",
"@flexn/typescript-config": "1.0.0",
"@types/jest": "~27.0.2",
"@types/node": "~16.11.7",
"eslint-config-prettier": "8.8.0",
"husky": "4.2.5",
"jest": "27.3.1",
"lerna": "6.6.2",
"rnv": "0.37.3",
"typescript": "4.9.5",
"prettier": "2.3.1",
"eslint": "8.40.0",
"@typescript-eslint/eslint-plugin": "~5.59.6",
"@typescript-eslint/parser": "~5.59.6",
"eslint-plugin-react": "~7.32.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn sanity"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"**/*.ts": "tsc-files --noEmit"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"resolutions": {}
}