-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.43 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.43 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"lint": "lerna run lint",
"lint:check": "lerna run lint:check",
"format": "prettier . --write",
"clean": "lerna clean --yes && lerna run remove-dist && rimraf node_modules",
"publish": "lerna publish from-package --no-private",
"release:preflight": "npm run lint && npm run test && npm run build",
"release:version": "lerna version --no-private",
"release": "npm run release:preflight && npm run release:version"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@babel/preset-env": "^7.26.9",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-istanbul": "^3.2.3",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"jsdom": "^26.1.0",
"lerna": "^7.2.0",
"prettier": "3.0.3",
"publint": "^0.3.18",
"tsdown": "^0.21.4",
"typescript": "^5.2.2",
"vitest": "^3.1.3"
},
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "16.10.0",
"@rolldown/binding-linux-x64-gnu": "1.0.0-beta.9-commit.d91dfb5"
}
}