forked from stumpapp/stump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.71 KB
/
package.json
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
{
"name": "@stump/monorepo",
"version": "0.0.4",
"repository": "https://github.com/stumpapp/stump.git",
"author": "Aaron Leopold <aaronleopold1221@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"core",
"docs",
"packages/*"
],
"scripts": {
"prepare": "husky install",
"setup": "yarn && yarn web build && cargo codegen",
"lint": "eslint --ext .ts,.tsx,.cts,.mts,.js,.jsx,.cjs,.mjs --fix --report-unused-disable-directives --no-error-on-unmatched-pattern --exit-on-fatal-error --ignore-path .gitignore .",
"client": "yarn workspace @stump/client",
"desktop": "yarn workspace @stump/desktop",
"expo": "yarn workspace @stump/expo",
"browser": "yarn workspace @stump/browser",
"web": "yarn workspace @stump/web",
"docs": "yarn workspace @stump/docs",
"server": "yarn workspace @stump/server",
"start:desktop": "concurrently -n server,desktop -c green.bold,blue.bold \"yarn run server start\" \"yarn desktop start\"",
"dev:web": "concurrently -n server,web -c green.bold,blue.bold \"yarn run server dev\" \"yarn web dev\"",
"dev:expo": "concurrently -n server,expo -c green.bold,blue.bold \"yarn run server dev\" \"yarn expo dev\"",
"core": "yarn workspace @stump/core",
"prisma": "yarn core prisma",
"codegen": "cargo run --package codegen",
"build:server": "yarn run server build",
"build:web": "yarn web build && yarn build:server",
"build:desktop": "yarn desktop build",
"prettify": "prettier --config prettier.config.js --ignore-path .prettierignore --write .",
"nuke": "yarn -r nuke && yarn"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"concurrently": "^8.2.2",
"cpy-cli": "^5.0.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"move-cli": "2.0.0",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.1",
"prettier-plugin-tailwindcss": "^0.5.6",
"rimraf": "^5.0.5",
"trash-cli": "^5.0.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json}": [
"prettier --config prettier.config.js --check"
],
"*.rs": [
"cargo fmt --check --manifest-path=core/Cargo.toml --",
"cargo fmt --check --manifest-path=apps/server/Cargo.toml --",
"cargo fmt --check --manifest-path=apps/desktop/src-tauri/Cargo.toml --"
]
},
"engines": {
"node": "^20.0.0"
},
"packageManager": "yarn@1.22.21",
"yarn": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core"
]
}
}
}