-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
80 lines (80 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
{
"name": "@stump/monorepo",
"version": "0.0.9",
"repository": "https://github.com/stumpapp/stump.git",
"author": "Aaron Leopold <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"docs",
"packages/*"
],
"scripts": {
"prepare": "husky",
"setup": "yarn && yarn web build && cargo codegen",
"lint": "lerna run lint --stream --parallel && yarn check-types",
"check-types": "lerna run check-types --stream --parallel",
"test": "lerna run test",
"client": "lerna run --scope @stump/client",
"desktop": "lerna run --scope @stump/desktop",
"expo": "lerna run --scope @stump/expo",
"browser": "lerna run --scope @stump/browser",
"web": "lerna run --scope @stump/web",
"docs": "lerna run --scope @stump/docs",
"start:desktop": "concurrently -n server,desktop -c green.bold,blue.bold \"cargo run -p stump_server\" \"yarn desktop start\"",
"dev:desktop": "concurrently -n server,desktop -c green.bold,blue.bold \"cargo run -p stump_server\" \"yarn desktop dev\"",
"dev:web": "concurrently -n server,web -c green.bold,blue.bold \"cargo watch --ignore core/prisma -x run -p stump_server\" \"yarn web dev\"",
"dev:expo": "concurrently -n server,expo -c green.bold,blue.bold \"cargo watch --ignore core/prisma -x run -p stump_server\" \"yarn expo dev\"",
"prisma-studio": "npx prisma studio --schema core/prisma/schema.prisma",
"format": "lerna run format --stream --parallel",
"nuke": "lerna run nuke"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/traverse": "^7.25.7",
"@eslint/js": "^9.13.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"concurrently": "^8.2.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"prettier": "=3.3.2",
"prettier-eslint": "^16.3.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"rimraf": "^5.0.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
},
"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": "[email protected]",
"yarn": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core"
]
}
},
"dependencies": {}
}