-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.54 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "setup-workspace",
"description": "A tool for quick setup and configuration of essential project files.",
"type": "commonjs",
"private": "false",
"repository": {
"type": "git",
"url": "git+https://github.com/in-ch/setup"
},
"keywords": [
"setting",
"setup",
"eslint",
"prettier",
"husky",
"lighthouse",
"package manager",
"typescript",
"git message",
"monorepo",
"CI/CD",
"automation",
"devtools",
"code quality",
"commitizen",
"git hooks",
"linting",
"code formatting",
"test automation",
"pre-commit hooks",
"webpack",
"rollup",
"babel",
"jest",
"vitest",
"eslint-config",
"prettier-config",
"husky-config",
"commitlint-config",
"starter template",
"git commit"
],
"scripts": {
"test": "pnpm recursive run test",
"build": "pnpm recursive run build",
"prepare": "husky",
"bench": "pnpm vitest bench",
"dev:docs": "pnpm -F docs start",
"build:docs": "cd packages/docs && npm run build",
"dev:setup": "pnpm -F @in-ch/setup dev",
"start:setup": "pnpm -F @in-ch/setup start"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/jest-dom": "^6.6.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/mocha": "^10.0.9",
"@types/node": "^22.10.6",
"commitlint": "^19.6.0",
"es-toolkit": "^1.27.0",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-no-for-of-array": "^0.1.0",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"prettier": "^3.4.0",
"prettier-plugin-sort-re-exports": "^0.1.0",
"rollup": "3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.6"
}
}