-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 3.27 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
{
"name": "shared-components",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/MapColonies/shared-components.git",
"author": "ofer.adel <[email protected]>, alex.lebinson <[email protected]>",
"private": true,
"workspaces": [
"packages/react-components",
"packages/react-ui-components"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": [
"@map-colonies/eslint-config/react",
"@map-colonies/eslint-config/jest",
"@map-colonies/eslint-config/ts-base"
],
"parserOptions": {
"project": "./tsconfig.json"
}
},
"eslintIgnore": [
"**/node_modules/**",
"packages/react-ui-components/**",
"**/dist/**",
"packages/react-components/storybook-static/**"
],
"scripts": {
"del-dist": "npx lerna exec --parallel -- del-cli dist",
"prebuild": "yarn del-dist",
"prepublish": "npx lerna run build",
"test": "npx lerna bootstrap && npx lerna run test:nowatch",
"publish": "npx lerna publish --no-private --conventional-commits -m \"chore(release): publish\"",
"publish:current": "npx lerna exec -- npm publish",
"clean": "npx lerna clean",
"clean:update": "npx lerna clean && npx lerna bootstrap",
"storybook:all": "npx lerna run storybook --parallel",
"storybook-composition": "npx start-storybook -p 9009 -s public",
"build-storybook": "npx lerna run build-storybook && npx build-storybook -s public",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check .",
"eslint:fix": "npx eslint --fix",
"eslint:check": "npx eslint . --ext .ts,.tsx"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@map-colonies/eslint-config": "^1.1.0",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-controls": "^6.0.21",
"@storybook/addon-docs": "^6.0.21",
"@storybook/addon-knobs": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/addon-storysource": "^6.0.21",
"@storybook/addons": "^6.0.21",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.21",
"@storybook/theming": "^6.0.21",
"commitlint": "^9.1.0",
"cz-conventional-changelog": "^3.2.0",
"del-cli": "^3.0.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "^4.2.5",
"jest-html-reporters": "^2.0.2",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.1.0",
"standard-version": "^8.0.2",
"storybook-dark-mode": "^1.0.0"
}
}