-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.62 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.62 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
{
"name": "firelancer",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">= 18"
},
"scripts": {
"watch": "lerna run watch --parallel",
"lint": "eslint --fix",
"format": "prettier --write --html-whitespace-sensitivity ignore",
"check-format": "prettier --check .",
"build": "lerna run build",
"start": "lerna run start",
"test": "lerna run test --stream --no-bail",
"version": "npm run check-imports && npm run build && npm run generate-changelog && git add CHANGELOG* && git add */version.ts",
"codegen": "ts-node scripts/generate-schema-types.ts",
"check-imports": "ts-node scripts/check-imports.ts",
"generate-changelog": "ts-node scripts/changelogs/generate-changelog.ts",
"publish-local": "lerna version --force-publish --no-git-tag-version && cd scripts && ./publish-to-verdaccio.sh",
"publish-release": "lerna publish -m \"chore: Publish %s\" --no-push --force-publish"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/conventional-changelog-core": "^8.0.0",
"@types/find": "^0.2.4",
"conventional-changelog-core": "^9.0.0",
"find": "^0.3.0",
"fs-extra": "^11.3.0",
"globals": "^15.13.0",
"lerna": "^8.1.9",
"nx": "19.6.5",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"zod": "^3.24.3"
},
"dependencies": {
"zod-to-ts": "^1.2.0"
}
}