-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.25 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.25 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
78
79
80
81
82
83
84
85
86
{
"version": "11.0.6",
"private": true,
"packageManager": "yarn@4.6.0",
"prettier": "@alienfast/prettier-config",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"build": "run-s clean build:each",
"build:ide": "echo 'tsc -b' && tsc -b",
"build:each": "lerna exec --stream -- yarn build",
"clean": "tsx ./scripts/clean.ts",
"clean:yarn": "tsx ./scripts/clean-yarn.ts",
"reset": "tsx ./scripts/reset.ts",
"lint:fix": "eslint . --cache --fix",
"test": "yarn build:ide && lerna exec --stream --parallel -- yarn test",
"release": "yarn auto shipit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md,gql}": [
"prettier --write",
"git add"
],
"*.{ts,tsx,js}": [
"eslint . --cache --ext .js,.ts,.tsx --fix",
"git add"
]
},
"devDependencies": {
"@alienfast/eslint-config": "^5.2.6",
"@alienfast/logger": "workspace:*",
"@alienfast/prettier-config": "^1.0.2",
"@alienfast/tsconfig": "^1.0.4",
"@auto-it/all-contributors": "^11.3.0",
"@auto-it/first-time-contributor": "^11.3.0",
"@auto-it/released": "^11.3.0",
"@lerna-lite/changed": "^3.12.0",
"@lerna-lite/cli": "^3.12.0",
"@lerna-lite/exec": "^3.12.0",
"@lerna-lite/list": "^3.12.0",
"@lerna-lite/publish": "^3.12.0",
"@lerna-lite/version": "^3.12.0",
"@types/babel__core": "^7",
"@types/node": "^22.13.1",
"@types/rimraf": "^4",
"@vitejs/plugin-react": "^4.3.4",
"auto": "^11.3.0",
"eslint": "^9.20.0",
"execa": "^9.5.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": "https://github.com/alienfast/logger",
"author": "Kevin Ross <kevin.ross@alienfast.com>",
"auto": {
"plugins": [
"npm",
"all-contributors",
"first-time-contributor",
"released"
]
}
}