forked from system-ui/theme-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.02 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
{
"private": true,
"scripts": {
"build": "preconstruct build",
"build:docs": "yarn build && yarn workspace docs build",
"serve:docs": "yarn build:docs && yarn workspace docs serve",
"dev:docs": "yarn workspace docs start",
"clean": "lerna run clean && rimraf packages/*/{dist,rts2_cache*}",
"format": "prettier --write \"**/*.{ts,js,json}\" \"**/*.md\" \"**/*.mdx\"",
"test": "jest",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --noEmit -P ./tsconfig.test.json",
"logo": "yarn workspace docs logo",
"postinstall": "preconstruct dev && patch-package",
"version:bump": "lerna version",
"version:bump-next": "lerna version prerelease --preid alpha --exact",
"release": "yarn clean && yarn build && auto shipit -v",
"release-manual": "yarn prerelease-manual && lerna publish from-package --dist-tag next --pre-dist-tag next",
"prerelease-manual": "yarn clean && yarn build && yarn typecheck && yarn test --coverage",
"bump-version": "lerna version",
"bump-version-next": "lerna version prerelease --preid alpha --exact --force-publish",
"all-contributors:check": "./scripts/all-contributors-check.js",
"all-contributors:add": "npx all-contributors add"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@auto-it/all-contributors": "^10.25.0",
"@auto-it/conventional-commits": "^10.25.0",
"@auto-it/first-time-contributor": "^10.25.0",
"@auto-it/magic-zero": "^10.25.0",
"@auto-it/omit-commits": "^10.29.0",
"@auto-it/released": "^10.25.0",
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/helper-validator-identifier": "^7.12.11",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.10",
"@codechecks/build-size-watcher": "^0.1.0",
"@codechecks/client": "0.1.10-beta",
"@emotion/jest": "^11.3.0",
"@preconstruct/cli": "^2",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/node": "^16.4.10",
"@types/react-dom": "^17.0.8",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"auto": "^10.25.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^1.8.0",
"egzek": "^1.2.0",
"husky": ">=6.0.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"jest-mock-console": "^1.0.1",
"lerna": "^4.0.0",
"lint-staged": "11.1.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"ts-toolbelt": "^9.6.0",
"typecov": "^0.2.3",
"typescript": "^4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"preconstruct": {
"packages": [
"packages/*",
"!packages/docs",
"!packages/e2e"
]
},
"name": "@theme-ui/monorepo"
}