forked from pixiv/charcoal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.74 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
102
103
104
105
{
"name": "charcoal-ui",
"description": "@charcoal-ui monorepo",
"author": "pixiv",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"storybook": "storybook dev -p 6006",
"storybook:experimental-vite": "USE_VITE=1 storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:build-vite": "USE_VITE=1 storybook build",
"build": "yarn workspaces foreach -vpt -j unlimited run build",
"clean": "yarn workspaces foreach -vp run clean",
"test": "jest",
"test:strict": "USE_STRICT=1 jest",
"typecheck": "yarn workspaces foreach -vp run typecheck",
"typecheck:config": "tsc",
"lint": "run-p 'lint:*'",
"lint:eslint": "eslint . --max-warnings=0",
"lint:prettier": "prettier . --check",
"lint:stylelint": "stylelint '**/*.{css,jsx,tsx}'",
"fmt": "run-s fmt:prettier fmt:stylelint fmt:eslint",
"fmt:eslint": "DEBUG=eslint:cli-engine eslint . --fix --max-warnings=0",
"fmt:prettier": "prettier . --write",
"fmt:stylelint": "stylelint '**/*.{css,jsx,tsx}' --fix -f verbose",
"release": "yarn && yarn run clean && yarn run build && lerna publish --no-changelog --no-private",
"release:alpha": "yarn release --conventional-prerelease --dist-tag alpha",
"postpublish": "zx ./misc/fix-versioning.mjs && ./misc/postpublish.sh",
"website": "vite docs --base=charcoal/docs --port 5000"
},
"publishConfig": {
"provenance": true
},
"devDependencies": {
"@charcoal-ui/icons-cli": "workspace:^",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/config-lerna-scopes": "^16.0.0",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@storybook/addon-a11y": "^7.4.1",
"@storybook/addon-essentials": "^7.4.1",
"@storybook/addon-interactions": "^7.4.1",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/addon-links": "^7.4.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-storysource": "^7.4.1",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.4.1",
"@storybook/builder-vite": "^7.4.1",
"@storybook/builder-webpack5": "^7.4.1",
"@storybook/react": "^7.4.1",
"@storybook/react-vite": "^7.4.1",
"@storybook/react-webpack5": "^7.4.1",
"@storybook/testing-library": "^0.2.0",
"@stylelint/postcss-css-in-js": "^0.37.2",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"@types/prettier": "^2.4.3",
"@types/styled-components": "^5.1.21",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"esbuild": "^0.14.14",
"esbuild-jest": "^0.5.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"glob": "^7.2.0",
"husky": "^4.3.8",
"jest": "^27.4.7",
"jsdom": "^19.0.0",
"lerna": "^6.6.2",
"npm-run-all": "^4.1.5",
"postcss-syntax": "^0.36.2",
"prettier": "^2.8.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"storybook": "^7.4.1",
"storybook-dark-mode": "^3.0.1",
"styled-components": "^5.3.3",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-styled-components": "^0.1.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"vite": "^3.0.8",
"zx": "^7.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"packageManager": "[email protected]"
}