-
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.22 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.22 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": "phoenix-rooivalk",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"rust:format": "cargo fmt --all",
"rust:format:check": "cargo fmt --all -- --check",
"fx": "pnpm run format && pnpm run lint",
"prepare": "husky",
"sim:dev": "pnpm -C apps/threat-simulator-desktop dev",
"sim:dev:tauri": "pnpm -C apps/threat-simulator-desktop dev:tauri",
"sim:build": "pnpm -C apps/threat-simulator-desktop build",
"sim:build:tauri": "pnpm -C apps/threat-simulator-desktop build:tauri",
"sim:test": "pnpm -C apps/threat-simulator-desktop test",
"sim:lint": "pnpm -C apps/threat-simulator-desktop lint"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.1",
"@marp-team/marp-cli": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-security": "^4.0.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"markdownlint-cli2": "^0.21.0",
"prettier": "^3.8.1",
"turbo": "^2.8.20",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"sharp": "^0.34.0",
"flatted": ">=3.4.2",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"smol-toml": ">=1.6.1",
"svgo": ">=3.3.3",
"undici@>=7.0.0 <7.24.0": "7.24.6",
"yaml": ">=2.8.3"
}
},
"dependencies": {
"@types/node": "^25.3.5",
"pptxgenjs": "^4.0.1"
}
}