-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
79 lines (79 loc) · 1.85 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
{
"name": "@doc-blocks/monorepo",
"private": true,
"repository": "https://github.com/intuit/doc-blocks",
"author": "Andrew Lisowski [email protected]",
"contributors": [
"Andrew Lisowski [email protected]"
],
"license": "MIT",
"scripts": {
"create": "ds create component",
"create:package": "ds create package",
"clean": "ds clean",
"dev": "ds dev",
"start": "lerna run start --parallel",
"storybook": "ds storybook start",
"lint": "ds lint",
"test": "ds test",
"build": "lerna run build --stream",
"build:storybook": "ds storybook build",
"size": "ds size",
"release": "auto shipit -v"
},
"workspaces": [
"components/*",
"packages/*"
],
"devDependencies": {
"@auto-it/all-contributors": "9.59.1",
"@auto-it/gh-pages": "9.59.1",
"@auto-it/released": "9.59.1",
"@design-systems/cli": "2.17.5",
"@storybook/addon-docs": "6.2.9",
"@testing-library/react": "12.0.0",
"@testing-library/user-event": "13.2.1",
"@types/react-dom": "16.8.4",
"auto": "9.59.1",
"html-webpack-insert-text-plugin": "1.0.3",
"html-webpack-plugin": "4.3.0",
"husky": "2.7.0",
"lerna": "^3.20.2",
"lint-staged": "^9.0.0",
"prettier": "2.1.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"source-map-loader": "1.1.0"
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx,jsx}": [
"prettier --write",
"git add"
]
},
"jest-junit": {
"outputDirectory": "./coverage/target/surefire-reports"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"auto": {
"plugins": [
"npm",
"released",
"all-contributors",
[
"gh-pages",
{
"dir": "./out"
}
]
]
}
}