-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "yeoman-api",
"version": "0.0.2",
"private": true,
"type": "module",
"workspaces": [
"./workspaces/eslint",
"./workspaces/namespace",
"./workspaces/adapter",
"./workspaces/types",
"./workspaces/transform",
"./workspaces/conflicter"
],
"scripts": {
"prebuild": "npm run clean",
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"clean-all": "npm run clean-all --workspaces && rimraf node_modules",
"fix": "prettier . --write && eslint . --fix",
"prepare": "patch-package && npm run build && husky",
"prettier": "prettier --write .",
"pretest": "eslint . && prettier . --check",
"test": "npm run test --workspaces",
"test-coverage": "npm run test-coverage --workspaces"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "9.9.1",
"@lerna-lite/cli": "3.8.0",
"@lerna-lite/publish": "3.8.0",
"@lerna-lite/version": "3.8.0",
"@types/node": "^18.11.9",
"@vitest/coverage-v8": "^2.0.5",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cpy-cli": "^5.0.0",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"patch-package": "^8.0.0",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.3.0",
"rimraf": "^5.0.10",
"typescript": "5.1.3",
"typescript-eslint": "8.2.0",
"vitest": "^2.0.5"
},
"engines": {
"node": "^16.13.0 || >=18.12.0"
}
}