-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.61 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.61 KB
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
{
"name": "@stacks/ui-monorepo",
"devDependencies": {
"@babel/core": "^7.14.6",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@commitlint/config-lerna-scopes": "12.1.4",
"@emotion/core": "11.0.0",
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"@octokit/core": "3.5.1",
"@stacks/eslint-config": "1.0.9",
"@stacks/prettier-config": "0.0.8",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@types/react": "17.0.11",
"@types/react-dom": "17.0.8",
"eslint": "7.29.0",
"eslint-plugin-react": "7.24.0",
"husky": "^6.0.0",
"jest": "27.0.6",
"lerna": "4.0.0",
"prettier": "^2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-jest": "27.0.3",
"tsdx": "0.14.1",
"typescript": "4.3.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": "@stacks/prettier-config",
"private": true,
"scripts": {
"build": "lerna run build --scope=@stacks/ui-theme && lerna run build --scope=@stacks/{ui-core,ui-utils} --no-bail --stream && lerna run build --scope=@stacks/ui",
"build:ui": "lerna run build --scope @stacks/ui",
"build:ui-core": "lerna run build --scope @stacks/ui-core",
"build:ui-theme": "lerna run build --scope @stacks/ui-theme",
"build:ui-utils": "lerna run build --scope @stacks/ui-utils",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint \"packages/**/src/**/*.{ts,tsx|!(d.ts)}\" -f unix",
"lint:fix": "eslint \"packages/**/src/**/*.{ts,tsx}\" -f unix --fix",
"lint:prettier": "prettier --check \"packages/**/src/**/*.{ts,tsx|!(d.ts)}\" *.js",
"lint:prettier:fix": "prettier --write \"packages/**/src/**/*.{ts,tsx|!(d.ts)}\" *.js",
"start": "lerna run start --scope=@stacks/{ui,ui-core,ui-theme} --parallel --no-bail --stream",
"typecheck": "lerna run typecheck --parallel --no-bail --stream",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version",
"release": "yarn build && yarn changeset:publish",
"version": "lerna bootstrap",
"postinstall": "patch-package",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"workspaces": [
"packages/**"
],
"dependencies": {
"@changesets/apply-release-plan": "5.0.0",
"@changesets/changelog-github": "0.4.0",
"@changesets/cli": "2.16.0",
"@changesets/git": "1.1.1",
"patch-package": "6.4.7",
"postinstall-postinstall": "2.1.0"
}
}