-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.62 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
{
"name": "@templ/workspace",
"type": "module",
"private": true,
"packageManager": "pnpm@9.12.3",
"description": "A modern monorepo project template",
"author": "Joydip Roy <joydipand@gmail.com> (https://github.com/rjoydip)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rjoydip/templ.git"
},
"sideEffects": true,
"workspaces": [
"apps/**",
"packages/**",
"scripts",
"generator"
],
"engines": {
"node": ">=18",
"npm": ">=8",
"pnpm": ">=8",
"shell": "bash",
"yarn": ">=3"
},
"scripts": {
"postinstall": "npx playwright install --with-deps",
"prepare": "husky",
"build": "pnpm run clean && turbo run build",
"clean": "pnpm run -r clean",
"clean:all": "pnpm run clean && node ./scripts/src/clean.mjs",
"deps:update": "taze -r -w -i -f -l",
"dev": "turbo run dev --parallel",
"check": "pnpm run lint && pnpm run typecheck && pnpm run --filter=scripts build:check automd",
"lint": "eslint . --fix",
"release": "changeset version && npm publish && git push --follow-tags",
"test": "turbo run test",
"test:e2e": "pnpm -C apps/admin test:e2e && pnpm -C apps/web test:e2e",
"typecheck": "pnpm run -r typecheck",
"validate": "pnpm run deps:update && pnpm run clean && pnpm run build && pnpm run check && pnpm run test"
},
"devDependencies": {
"@antfu/eslint-config": "2.27.3",
"@changesets/cli": "^2.27.9",
"eslint": "^8.57.1",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.6",
"knip": "^5.36.3",
"playwright": "^1.48.2",
"taze": "^0.16.9",
"turbo": "^2.2.3"
}
}