generated from innei-template/rollup-typescript-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "-",
"private": true,
"author": "Innei",
"license": "MIT",
"engines": {
"pnpm": ">=7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --ignore-path ./.prettierignore --write ",
"eslint --cache"
]
},
"scripts": {
"prepare": "husky install && node scripts/should-build-pre.mjs",
"build": "turbo run package",
"test": "vitest",
"docs": "pnpm -C docs run dev ",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx,.vue packages/** --fix",
"format": "prettier --ignore-path ./.prettierignore --write packages/**"
},
"devDependencies": {
"@innei/bump-version": "1.5.9",
"@innei/eslint-config-react-ts": "0.9.8",
"@innei/prettier": "0.9.8",
"@pnpm-template/core": "workspace:*",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-typescript": "11.0.0",
"@types/lodash-es": "4.17.6",
"@types/node": "18.15.0",
"husky": "8.0.3",
"lint-staged": "13.1.2",
"prettier": "2.8.4",
"rollup": "3.19.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"tsc-alias": "1.8.3",
"turbo": "^1.8.3",
"typescript": "4.9.5",
"vite": "4.1.4",
"vite-tsconfig-paths": "4.0.5",
"vitest": "0.29.2"
}
}