-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.36 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
92
93
94
95
96
97
98
99
100
101
{
"name": "platoon",
"private": true,
"author": "Benoit Deziel <ben@benoitdeziel.com>",
"homepage": "https://github.com/FrontendRangers/platoon#readme",
"repository": {
"type": "git",
"url": "https://github.com/FrontendRangers/platoon.git"
},
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "lerna run start",
"start:libs:react": "yarn workspace @platoon/react start",
"start:libs:svelte": "yarn workspace @platoon/svelte start",
"build": "run-s build:core build:utils build:system build:react",
"build:core": "yarn core build",
"build:react": "yarn react build",
"build:utils": "yarn utils build",
"build:system": "yarn system build",
"build:website": "yarn workspace website build",
"test": "lerna run test",
"commit": "git-cz",
"bump": "lerna version --yes",
"release": "yarn build && changeset publish && git push --follow-tags",
"core": "yarn workspace @platoon/core",
"utils": "yarn workspace @platoon/utils",
"system": "yarn workspace @platoon/system",
"react": "yarn workspace @platoon/react",
"svelte": "yarn workspace @platoon/svelte",
"website": "yarn workspace website",
"build-storybook:react": "yarn react build:storybook",
"chromatic": "yarn workspace @platoon/react chromatic",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --quiet"
],
"*.{json,md,scss,yaml,yml,ts,tsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -E HUSKY_GIT_PARAMS",
"post-checkout": "yarnhook",
"post-merge": "yarnhook",
"post-rewrite": "yarnhook"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"commitizen": "^4.2.3",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-lerna": "^2.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.2.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-config-styled-components": "^0.1.1",
"typescript": "^4.2.3",
"yarnhook": "^0.5.1"
},
"dependencies": {
"@changesets/cli": "^2.14.1"
}
}