-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"name": "@runnablejs/monorepo",
"version": "0.4.15",
"private": true,
"packageManager": "[email protected]",
"description": "Build internal apps with ease",
"scripts": {
"preinstall": "npx only-allow pnpm",
"ci": "pnpm install && pnpm typecheck && pnpm lint && pnpm build && pnpm test",
"build": "FORCE_COLOR=1 turbo run build",
"dev": "FORCE_COLOR=1 turbo run dev",
"test": "FORCE_COLOR=1 turbo run test",
"typecheck": " FORCE_COLOR=1 turbo run typecheck",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:serve": "vitepress serve docs",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm -r publish --access public"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^18.18.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"bumpp": "^9.2.0",
"cross-env": "^7.0.3",
"esbuild": "0.19.5",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unicorn": "^44.0.2",
"lint-staged": "^13.3.0",
"pnpm": "8.10.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-esbuild": "^5.0.0",
"simple-git-hooks": "^2.9.0",
"turbo": "^1.10.16",
"typescript": "^5.2.2",
"vitepress": "^1.0.0-rc.25",
"vue": "^3.3.8"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@remix-run/dev": "^1.19.3"
}
}