generated from furystack/boilerplate
-
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.37 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.37 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": "pi-rat",
"version": "1.0.18",
"description": "example web app based on furystack",
"main": "service/src/index.ts",
"repository": "https://github.com/furystack/pi-rat.git",
"author": "Gallay Lajos <gallay.lajos@gmail.com>",
"license": "GPL-2.0-only",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"common",
"frontend",
"service",
"monaco-mfe"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@furystack/eslint-plugin": "^1.0.0",
"@furystack/yarn-plugin-changelog": "^1.0.5",
"@playwright/test": "^1.58.2",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"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",
"jsdom": "^28.1.0",
"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 --fix"
],
"*": [
"prettier --write --ignore-unknown"
]
},
"scripts": {
"prepare": "husky",
"build:monaco-mfe": "yarn workspace monaco-mfe build",
"build": "yarn build:monaco-mfe && tsc -b common service frontend && yarn workspace frontend build",
"create-schemas": "yarn workspace common create-schemas",
"test:e2e:install": "yarn playwright test --grep @install --project chromium",
"test:e2e": "yarn playwright test --grep-invert @install",
"test": "vitest",
"start:service": "yarn workspace service start",
"start:frontend": "yarn workspace frontend start",
"clean": "rimraf service/dist frontend/dist monaco-mfe/dist **/tsconfig.tsbuildinfo tsconfig.tsbuildinfo common/dist",
"lint": "eslint .",
"bumpVersions": "yarn version check --interactive",
"applyReleaseChanges": "yarn version apply --all && yarn changelog apply && yarn format",
"dockerize": "docker build . --tag furystack/pi-rat:latest",
"sshIntoDocker": "docker run -i -t furystack/pi-rat sh",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "yarn@4.13.0"
}