-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 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
{
"name": "furystack-boilerplate-app",
"version": "2.0.0",
"description": "example web app based on furystack",
"main": "service/src/index.ts",
"repository": "https://github.com/furystack/boilerplate.git",
"author": "Gallay Lajos <gallay.lajos@gmail.com>",
"license": "GPL-2.0-only",
"private": true,
"workspaces": {
"packages": [
"common",
"frontend",
"service"
]
},
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@furystack/eslint-plugin": "^2.0.0",
"@furystack/yarn-plugin-changelog": "^1.0.6",
"@playwright/test": "^1.58.2",
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-playwright": "^2.9.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext .tsx,.ts --cache --fix",
"prettier --write"
],
"*.{js,jsx}": [
"prettier --write"
]
},
"scripts": {
"build": "tsc -b common service frontend && yarn workspace frontend build",
"create-schemas": "yarn workspace common create-schemas",
"seed": "yarn workspace service seed",
"test:e2e": "yarn playwright test",
"test": "vitest",
"start:service": "yarn workspace service start",
"start:frontend": "yarn workspace frontend start",
"prepare": "husky",
"clean": "rimraf service/dist frontend/dist **/tsconfig.tsbuildinfo tsconfig.tsbuildinfo common/dist",
"lint": "eslint .",
"bumpVersions": "yarn version check --interactive",
"applyReleaseChanges": "yarn version apply --all && yarn changelog apply && yarn format",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@4.13.0"
}