-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.08 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
73
74
75
76
77
{
"name": "ftc",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.34.5",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "pnpm install",
"prebuild": "rimraf --glob packages/*/dist",
"build": "turbo run build --filter=@aurorafe/*",
"test": "pnpm -r --filter @aurorafe/* --workspace-concurrency=4 run test",
"clear": "rimraf --glob 'packages/*/{dist,node_modules}' && rimraf node_modules",
"lint": "pnpm -r --filter @aurorafe/* --workspace-concurrency=4 run lint",
"format": "prettier --write .",
"prettier": "prettier --write .",
"eslint": "eslint .",
"prepare": "husky || true",
"changeset": "changeset",
"commit": "git-cz",
"preinstall": "npx only-allow pnpm",
"clean": "rimraf --glob node_modules '**/node_modules'",
"prepublishOnly": "npm run build",
"release": "pnpm run lint && pnpm run build && pnpm run test && pnpm changeset publish"
},
"devDependencies": {
"@aurorafe/cz-config": "workspace:*",
"@aurorafe/eslint-config-base": "workspace:*",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.31.1",
"@commitlint/cli": "20.5.3",
"@commitlint/config-conventional": "20.5.3",
"@types/node": "24.13.3",
"commitizen": "4.3.2",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "7.5.4",
"esbuild": "0.28.1",
"eslint": "10.7.0",
"fs-extra": "11.3.6",
"husky": "9.1.7",
"lint-staged": "16.3.1",
"prettier": "3.9.5",
"rimraf": "6.1.3",
"terser": "5.49.0",
"tslib": "2.8.1",
"tsup": "8.5.1",
"turbo": "2.10.5",
"typescript": "5.9.3",
"vitest": "4.1.10",
"wait-for-expect": "4.0.0"
},
"lint-staged": {
"packages/**/*.{vue,js,ts,jsx,tsx,mjs,cjs}": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "10"
}
},
"onlyBuiltDependencies": [
"esbuild"
]
}
}