This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "treat-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/treat.git"
},
"workspaces": [
"packages/*",
"site",
"examples/*",
"test-helpers"
],
"preconstruct": {
"packages": [
"packages/treat",
"packages/react-treat"
]
},
"scripts": {
"lint": "tsc && manypkg check && prettier --check .",
"format": "prettier --write .",
"test": "jest",
"make-docs-manifest": "node ./site/makeDocsManifest.js",
"prestart-docs": "yarn make-docs-manifest",
"prebuild-docs": "yarn make-docs-manifest",
"start-docs": "webpack-dev-server --config ./site/webpack.config.js",
"build-docs": "NODE_ENV=production webpack --config ./site/webpack.config.js",
"build": "preconstruct build && node ./cleanup-browser-exports",
"dev": "preconstruct dev",
"release": "yarn build && yarn build-docs && changeset publish && node ./site/deploy.js",
"debug-fixture": "node ./test-helpers/debugFixture.js"
},
"volta": {
"node": "14.15.4",
"yarn": "1.22.10"
},
"resolutions": {
"@types/react": "^16.8.17"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@changesets/changelog-github": "^0.2.8",
"@changesets/cli": "^2.13.1",
"@manypkg/cli": "^0.17.0",
"@preconstruct/cli": "^2.0.1",
"@types/jest": "^26.0.20",
"@types/jest-environment-puppeteer": "^4.0.0",
"@types/puppeteer": "^1.12.4",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"html-webpack-plugin": "^5.0.0",
"jest": "^26.6.3",
"jest-puppeteer": "^4.1.0",
"prettier": "^2.2.1",
"puppeteer": "^1.14.0",
"typescript": "^4.1.3",
"webpack": "^5.20.2"
}
}