-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.2 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
{
"name": "@woodshed/root",
"version": "1.0.0",
"description": "A monorepo boilerplate based on Lerna, TypeScript and React",
"main": "index.js",
"repository": "https://github.com/alexnitta/woodshed.git",
"author": "Alex Nitta",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"react",
"react-dom",
"react-router-dom",
"react-router-dom/**"
]
},
"engines": {
"yarn": "^1.21.1"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"bump-versions": "lerna version --conventional-commits --yes",
"check-types": "tsc --noEmit",
"clean-all": "lerna clean && echo \"Deleting root node_modules ...\" && rm -rf node_modules",
"fix-js": "eslint \"**/*.{ts,tsx,js}\" --fix",
"lint-all": "yarn lint-styles && yarn lint-js && yarn check-types",
"lint-js": "eslint \"**/*.{ts,tsx,js}\"",
"lint-styles": "stylelint \"packages/**/*.css\"",
"test-all": "lerna run test --parallel --stream",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-lerna": "^2.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsdoc": "^0.2.11",
"husky": "^6.0.0",
"lerna": "^3.19.0",
"lint-staged": "^10.5.3",
"prettier": "^2.3.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.2.0",
"typescript": "^4.1.3"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}