-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.77 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.77 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
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
{
"name": "@noahnu/nodejs-tools",
"private": true,
"description": "NodeJS tools.",
"author": {
"name": "noahnu",
"email": "noah@noahnu.com",
"url": "https://noahnu.com"
},
"repository": {
"type": "git",
"url": "https://github.com/noahnu/nodejs-tools.git"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"workspaces": [
"packages/*",
"packages/eslint/*",
"packages/webpack-plugins/*"
],
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8",
"devDependencies": {
"@jest/types": "^30.2.0",
"@monoweave/plugin-github": "^3.2.0",
"@noahnu/eslint-config": "workspace:^",
"@swc/core": "^1.15.13",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@typescript-eslint/utils": "^8.56.1",
"@yarnpkg/sdks": "^3.2.3",
"@yarnpkg/types": "^4.0.1",
"esbuild": "^0.27.3",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-junit": "^9.0.1",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"scripts": {
"clean": "rm -rf reports && yarn workspaces foreach -vpi --worktree run clean",
"build": "yarn workspaces foreach -vpi --worktree --topological-dev run prepack",
"lint:ci": "eslint . --format junit --output-file reports/eslint.junit.xml",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"test:ci": "CI=1 run test --ci --runInBand",
"test:watch": "run test --watch",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --no-warnings\" jest --config=jest.config.js",
"types:watch": "tsc --noEmit --emitDeclarationOnly false --pretty --watch",
"workspace:build": "rm -rf $0/lib $0/.tmp && tsc -p $0/tsconfig.build.json",
"workspace:clean": "rm -rf $0/lib $0/.tmp && find $0/src -name '*.js' -type f -delete",
"release": "monoweave --log-level 0 --plugins @monoweave/plugin-github"
},
"dependencies": {
"@monoweave/cli": "^2.2.0"
}
}