-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn",
"bootstrap:undo": "lerna clean --yes",
"bootstrap:upgrade": "yarn upgrade-interactive --latest",
"clean": "lerna run --parallel clean",
"build": "yarn workspaces run build",
"test:unit:coverage": "yarn workspaces run test:unit:coverage",
"check:types": "yarn workspaces run check:types",
"lint": "yarn eslint",
"prepare": "yarn build",
"publish:version": "lerna publish",
"publish:canary": "lerna publish --canary"
},
"devDependencies": {
"@emotion/jest": "^11.13.0",
"@peculiar/eslint-config-base": "^0.0.2",
"@peculiar/eslint-config-react": "^0.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3 ",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"jsdom": "^24.1.1",
"lerna": "^7.4.2",
"ts-jest": "^29.2.4"
},
"license": "MIT"
}