forked from stumpapp/stump
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.04 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@stump/monorepo",
"version": "0.1.2",
"repository": "https://github.com/stumpapp/stump.git",
"author": "Aaron Leopold <aaronleopold1221@gmail.com>",
"license": "SEE README.md",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"docs",
"packages/*"
],
"nohoist": [
"apps/expo"
]
},
"scripts": {
"prepare": "husky",
"postinstall": "patch-package",
"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 \"bacon run-server --headless\" \"yarn web dev\"",
"dev:expo": "concurrently -n server,expo -c green.bold,blue.bold \"bacon run-server --headless\" \"yarn expo dev\"",
"format": "lerna run format --stream --parallel",
"nuke": "lerna run nuke",
"android": "expo run:android",
"ios": "expo run:ios"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.15.1",
"@babel/core": "^7.28.5",
"@babel/traverse": "^7.28.5",
"@eslint/js": "^9.39.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.58.0",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^8.2.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lerna": "^9.0.7",
"lint-staged": "^15.2.10",
"patch-package": "^8.0.1",
"prettier": "^3.7.4",
"prettier-eslint": "^16.4.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
},
"resolutions": {
"@types/react": "=19.1.0",
"react": "=19.1.0",
"react-dom": "=19.1.0",
"expo-constants": "=18.0.12",
"expo-linking": "=8.0.11"
},
"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"
]
}
},
"dependencies": {}
}