forked from vikejs/bati
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.4 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.4 KB
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
{
"name": "bati",
"private": true,
"type": "module",
"version": "0.0.454",
"description": "@batijs monorepo",
"scripts": {
"new-boilerplate": "tsx ./scripts/new-boilerplate.ts",
"screenshot": "node ./scripts/screenshot.js",
"release": "pnpm -r prerelease && bumpp && pnpm run publish",
"release:ci": "pnpm -r prerelease && bumpp -y && pnpm run publish",
"release:beta": "pnpm -r prerelease && bumpp --preid beta prerelease && pnpm run publish --no-git-checks --tag beta",
"release:local": "pnpm -r prerelease && bumpp -y --no-push --no-tag --no-commit --preid local prerelease && pnpm run publish --no-git-checks --tag local --registry http://localhost:4873",
"publish": "pnpm run build && pnpm -r publish",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:e2e": "pnpm --filter \"@batijs/tests\" test:e2e",
"cli": "pnpm run build && rimraf /tmp/bati-app && node packages/cli/dist/index.js /tmp/bati-app",
"build": "turbo run build --no-daemon",
"format": "git ls-files | egrep '\\.(json|js|jsx|css|ts|tsx|vue|mjs|cjs)$' | grep --invert-match package.json | xargs pnpm exec prettier --write",
"reset": "git clean -Xdf && pnpm install && pnpm run build",
"lint": "eslint ."
},
"keywords": [],
"author": "Joël Charles <joel.charles91@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.30.1",
"bumpp": "^10.2.0",
"citty": "^0.1.6",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-solid": "^0.14.5",
"eslint-plugin-vue": "^10.3.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsx": "^4.20.3",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vue-eslint-parser": "^10.2.0"
},
"optionalDependencies": {
"browserless": "^10.7.11",
"puppeteer": "^24.11.2"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.11.1",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@browserless/goto",
"@prisma/client",
"@prisma/engines",
"@sentry/cli",
"@tailwindcss/oxide",
"aws-sdk",
"better-sqlite3",
"es5-ext",
"esbuild",
"prisma",
"protobufjs",
"puppeteer",
"re2",
"sharp",
"workerd"
]
}
}