-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 4.11 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 4.11 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "recrest",
"version": "0.10.2",
"private": true,
"description": "Recrest — A lightweight developer dashboard built with Tauri.",
"license": "MIT",
"workspaces": [
"app",
"shared",
"tests",
"landingpage"
],
"scripts": {
"dev": "yarn workspace @recrest/shared build && yarn workspace @recrest/app tauri:dev",
"dev:web": "yarn workspace @recrest/shared build && yarn workspace @recrest/app dev",
"dev:web:old": "./scripts/dev-old.sh",
"dev:web:old:stop": "./scripts/dev-old.sh stop",
"dev:landingpage": "yarn workspace @recrest/landingpage dev",
"build": "yarn workspace @recrest/shared build && yarn workspace @recrest/app tauri:build",
"build:landingpage": "yarn workspace @recrest/landingpage build",
"build:demo": "yarn workspace @recrest/shared build && yarn workspace @recrest/app build:demo",
"preview:landingpage": "yarn workspace @recrest/landingpage preview",
"preinstall": "node scripts/check-node.cjs",
"predev": "node scripts/check-node.cjs && yarn workspace @recrest/shared build",
"postinstall": "yarn workspace @recrest/shared build",
"format": "yarn workspace @recrest/shared format && yarn workspace @recrest/app format && yarn workspace @recrest/tests format && yarn workspace @recrest/landingpage format",
"format:check": "yarn workspace @recrest/shared format:check && yarn workspace @recrest/app format:check && yarn workspace @recrest/tests format:check && yarn workspace @recrest/landingpage format:check",
"lint": "yarn workspace @recrest/shared lint && yarn workspace @recrest/app lint && yarn workspace @recrest/tests lint && yarn workspace @recrest/landingpage lint",
"test": "yarn workspace @recrest/shared test && yarn workspace @recrest/app test && yarn workspace @recrest/landingpage test",
"test:coverage": "yarn workspace @recrest/shared test && yarn workspace @recrest/app test:coverage && yarn workspace @recrest/landingpage test",
"test:ts": "yarn workspace @recrest/shared test:ts && yarn workspace @recrest/app test:ts && yarn workspace @recrest/tests test:ts && yarn workspace @recrest/landingpage test:ts",
"test:e2e": "yarn workspace @recrest/tests test:e2e",
"test:e2e:tauri": "bash tests/scripts/run-tauri-e2e.sh",
"typecheck": "yarn workspace @recrest/shared typecheck && yarn workspace @recrest/app typecheck && yarn workspace @recrest/tests typecheck && yarn workspace @recrest/landingpage typecheck",
"rust:check": "cargo check --manifest-path app/src-tauri/Cargo.toml",
"rust:check:release": "cargo check --manifest-path app/src-tauri/Cargo.toml --release",
"rust:test": "cargo test --manifest-path app/src-tauri/Cargo.toml",
"rust:test:release": "cargo test --manifest-path app/src-tauri/Cargo.toml --release",
"rust:clippy": "cargo clippy --manifest-path app/src-tauri/Cargo.toml --all-targets",
"rust:clippy:strict": "cargo clippy --manifest-path app/src-tauri/Cargo.toml --all-targets -- -D warnings",
"verify": "yarn typecheck && yarn lint && yarn test && yarn rust:check && yarn rust:test && yarn rust:clippy",
"verify:release": "yarn verify && yarn rust:check:release && yarn rust:test:release",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"husky": "^9.1.6",
"lint-staged": "^17.0.7",
"prettier": "^3.3.3",
"typescript": "^6.0.3"
},
"resolutions": {
"@tauri-apps/api": "^2.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftVentures/Recrest.git"
},
"bugs": {
"url": "https://github.com/SoftVentures/Recrest/issues"
},
"homepage": "https://github.com/SoftVentures/Recrest#readme",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "22.22.3",
"yarn": "1.22.22"
},
"packageManager": "yarn@1.22.22",
"volta": {
"node": "22.22.3",
"yarn": "1.22.22"
}
}