forked from vikejs/bati
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 3.17 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
{
"name": "bati",
"private": true,
"type": "module",
"version": "0.0.307",
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/eslint__js": "^8.42.3",
"bumpp": "^9.8.1",
"citty": "^0.1.6",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-solid": "^0.14.4",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"turbo": "^2.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vue-eslint-parser": "^9.4.3"
},
"optionalDependencies": {
"browserless": "^10.6.3",
"puppeteer": "^23.8.0"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@^1.0.28",
"array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@^1.0.24",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1.0.28",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1.0.28",
"array.prototype.toreversed": "npm:@nolyfill/array.prototype.toreversed@^1.0.27",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1.0.24",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1.0.21",
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
"object.assign": "npm:@nolyfill/object.assign@^1.0.28",
"object.entries": "npm:@nolyfill/object.entries@^1.0.28",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1.0.28",
"object.hasown": "npm:@nolyfill/object.hasown@^1.0.24",
"object.values": "npm:@nolyfill/object.values@^1.0.28",
"side-channel": "npm:@nolyfill/side-channel@^1.0.29",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1.0.28"
}
}
}