forked from system-ui/theme-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.66 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
{
"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\"",
"lint": "eslint --ext .ts,.tsx,.js \"packages/**/*.{ts,tsx,js}\"",
"test": "jest",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --noEmit -P ./tsconfig.test.json",
"logo": "yarn workspace docs logo",
"postinstall": "preconstruct dev",
"dev": "preconstruct dev",
"version:bump": "lerna version",
"version:bump-next": "lerna version prerelease --preid alpha --exact",
"release": "yarn clean && yarn build && yarn shipit",
"shipit": "cross-env TS_NODE_COMPILER_OPTIONS=\"{ \\\"module\\\": \\\"commonjs\\\", \\\"isolatedModules\\\": false }\" auto shipit -v",
"auto:version": "cross-env TS_NODE_COMPILER_OPTIONS=\"{ \\\"module\\\": \\\"commonjs\\\", \\\"isolatedModules\\\": false }\" auto version -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.32.3",
"@auto-it/conventional-commits": "^10.32.3",
"@auto-it/first-time-contributor": "^10.32.3",
"@auto-it/magic-zero": "^10.32.3",
"@auto-it/omit-commits": "^10.32.3",
"@auto-it/released": "^10.32.3",
"@babel/cli": "^7.13.14",
"@babel/core": "^7.15.8",
"@babel/helper-validator-identifier": "^7.12.11",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.16.3",
"@codechecks/build-size-watcher": "^0.1.0",
"@codechecks/client": "0.1.10-beta",
"@emotion/jest": "^11.6.0",
"@emotion/react": "^11",
"@mdx-js/react": "^1 || ^2",
"@preconstruct/cli": "^2.1.5",
"@testing-library/react": "^13.0.0",
"@types/jest": "^27.0.3",
"@types/mdx-js__react": "^1 || ^2",
"@types/node": "^17.0.5",
"@types/react-dom": "^18.0.3",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"auto": "^10.32.3",
"babel-jest": "^28.0.3",
"babel-preset-gatsby": "^2.2.0",
"cross-env": "^7.0.3",
"egzek": "^1.2.0",
"husky": ">=7.0.4",
"jest": "^28.0.3",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.0.2",
"jest-mock-console": "^1.0.1",
"lerna": "^4.0.0",
"lint-staged": "12.4.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"react-test-renderer": "^18.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.0-next.3",
"ts-toolbelt": "^9.6.0",
"typecov": "^0.2.3",
"typescript": "^4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"preconstruct": {
"packages": [
"packages/*",
"!packages/docs",
"!packages/e2e",
"!packages/tachyons"
]
},
"name": "@theme-ui/monorepo",
"dependencies": {},
"resolutions": {
"@types/readable-stream": "2.3.11",
"@types/eslint": "7.29.0"
}
}