-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "@neetly/devtools",
"private": true,
"workspaces": [
"./packages/*"
],
"type": "module",
"scripts": {
"check": "eslint && prettier --check .",
"check:fix": "eslint --fix && prettier --write .",
"test": "nx run-many --targets test",
"build": "nx run-many --targets build",
"publish": "yarn workspaces foreach --all --no-private npm publish --access public --tolerate-republish"
},
"devDependencies": {
"@babel/cli": "8.0.0-alpha.11",
"@babel/core": "8.0.0-alpha.11",
"@neetly/babel-preset": "workspace:*",
"@neetly/eslint-config": "workspace:*",
"@neetly/yarn-constraints": "workspace:*",
"@yarnpkg/types": "4.0.0",
"eslint": "9.7.0",
"nx": "19.5.2",
"prettier": "3.3.3",
"typescript": "5.5.4"
},
"resolutions": {
"babel-jest@npm:30.0.0-alpha.5": "patch:babel-jest@npm:30.0.0-alpha.5#~/patches/babel-jest.patch",
"jest-resolve@npm:30.0.0-alpha.5": "patch:jest-resolve@npm:30.0.0-alpha.5#~/patches/jest-resolve.patch"
},
"packageManager": "[email protected]"
}