-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.52 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
100
101
102
103
{
"name": "build-ts",
"version": "0.0.0-semantically-released",
"repository": "github:WillBooster/build-ts",
"license": "UNLICENSED",
"author": "WillBooster Inc.",
"type": "module",
"bin": "bin/index.js",
"files": [
"bin/",
"dist/",
"babel.*"
],
"scripts": {
"build": "wb buildIfNeeded --command 'yarn start app'",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettify",
"postinstall": "husky || true",
"lint": "eslint --color \"./{scripts,src,tests}/**/*.{cjs,cts,js,jsx,mjs,mts,ts,tsx}\"",
"lint-fix": "yarn lint --fix",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare": "husky || true",
"prettify": "prettier --cache --color --write \"**/{.*/,}*.{cjs,css,cts,htm,html,js,json,json5,jsonc,jsx,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\"",
"start": "tsx src/index.ts",
"start-prod": "yarn build && yarn build-ts",
"test": "vitest",
"typecheck": "wb typecheck"
},
"prettier": "@willbooster/prettier-config",
"dependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/plugin-proposal-explicit-resource-management": "7.25.9",
"@babel/plugin-syntax-import-attributes": "7.26.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-terser": "0.4.4",
"@rollup/pluginutils": "5.1.4",
"@willbooster/shared-lib-node": "6.0.4",
"babel-plugin-polyfill-corejs3": "0.11.0",
"babel-plugin-transform-remove-console": "6.9.4",
"chalk": "5.4.1",
"core-js": "3.39.0",
"core-js-pure": "3.39.0",
"date-time": "4.0.0",
"pretty-ms": "9.2.0",
"rollup": "4.29.1",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-keep-import": "1.0.3",
"rollup-plugin-node-externals": "8.0.0",
"rollup-plugin-preserve-directives": "0.4.0",
"rollup-plugin-string": "3.0.0",
"rollup-plugin-ts": "3.4.5",
"signal-exit": "4.1.0",
"tsx": "4.19.2",
"typescript": "5.7.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/babel__core": "7.20.5",
"@types/babel__plugin-transform-runtime": "7.9.5",
"@types/babel__preset-env": "7.9.7",
"@types/eslint": "8.56.10",
"@types/node": "22.10.5",
"@types/signal-exit": "3.0.4",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@willbooster/babel-configs": "1.3.2",
"@willbooster/eslint-config-ts": "10.6.1",
"@willbooster/prettier-config": "9.1.3",
"@willbooster/wb": "8.0.19",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-sort-class-members": "1.21.0",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"micromatch": "4.0.8",
"pinst": "3.0.0",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"sort-package-json": "2.12.0",
"type-fest": "4.31.0",
"vitest": "2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}