-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
50 lines (50 loc) · 1.65 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
{
"name": "jitar-monorepo",
"version": "0.8.0",
"private": true,
"description": "Monorepo configuration for Jitar.",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*",
"tools/*",
"examples/**/*"
],
"scripts": {
"build": "lerna run build --scope=jitar --scope=create-jitar --scope=@jitar/plugin*",
"build:examples": "lerna run build --scope=*-example",
"build:all": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test",
"review": "lerna run test,lint",
"publish": "npx lerna publish --no-git-tag-version --no-private",
"changelog": "auto-changelog --template changelog.hbs -p -u --commit-limit false --hide-empty-releases true",
"changelog-debug": "auto-changelog --template changelog.hbs -p --template json --output changelog-data.json"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@nx/eslint-plugin": "^20.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/mime-types": "^2.1.4",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@vitest/coverage-v8": "^2.1.1",
"auto-changelog": "^2.5.0",
"degit": "^2.8.4",
"eslint": "^9.12.0",
"eslint-plugin-jitar": "0.0.1",
"eslint-plugin-sonarjs": "^2.0.3",
"lerna": "^8.1.8",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.1"
}
}