-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.21 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
{
"name": "@tomorrow-catcher/monorepo",
"private": true,
"description": "",
"scripts": {
"preinstall": "esno scripts/disallow-pnpm.ts",
"dev": "esno scripts/dev.ts",
"build": "esno scripts/builds.ts",
"release": "esno scripts/release.ts",
"commit": "esno scripts/get-commits.ts",
"verify:commit": "esno scripts/verify-commit.ts",
"lint": "eslint --fix",
"test": "pnpm recursive test --filter ./packages",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:release": "esno scripts/release-docs.ts",
"prepare": "husky install"
},
"author": "ChuHingYee",
"license": "MIT",
"engines": {
"pnpm": ">=6"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.16.7",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/conventional-commits-parser": "^3.0.3",
"@types/semver": "^7.5.0",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"chalk": "^5.1.2",
"conventional-commits-parser": "^4.0.0",
"esbuild": "^0.17.19",
"esbuild-register": "^3.4.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-define-config": "^1.20.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"esno": "^0.16.3",
"execa": "^7.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"rollup": "^3.24.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.1.3",
"vitepress": "^1.0.0-beta.1",
"write-pkg": "^5.1.0",
"yargs-parser": "^21.1.1"
},
"lint-staged": {
"{packages,docs,scripts,meta,build}/**/*.{js,ts,tsx,vue}": [
"eslint --fix"
],
"{packages,docs}/**/*.md": [
"prettier --write"
]
}
}