-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.42 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.42 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
{
"name": "@artemis-prime/chess-monorepo",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@8.15.0",
"engines": {
"pnpm": ">=8"
},
"scripts_": {
"_build:first-time": "pnpm install && pnpm prepare:serve",
"_build:domain": "yarn workspace @artemis-prime/chess-core build",
"_build:web": "yarn workspace @artemis-prime/chess-web build",
"tcheck:web": "yarn workspace @artemis-prime/chess-web tcheck",
"prepare:web": "yarn build:domain && yarn refresh:web && yarn tcheck:web",
"refresh:web": "yarn clean:web && yarn install",
"refresh:rn": "yarn clean:rn && yarn install",
"tcheck:rn": "yarn workspace @artemis-prime/chess-react-native tcheck",
"prepare:rn": "yarn build:domain && yarn refresh:rn",
"serve:web": "yarn workspace @artemis-prime/chess-web start",
"serve:rn": "yarn workspace @artemis-prime/chess-react-native start",
"deploy:rn": "yarn workspace @artemis-prime/chess-react-native deploy",
"link-assets:rn": "yarn workspace @artemis-prime/chess-react-native link-assets",
"clean:domain": "yarn workspace @artemis-prime/chess-core clean",
"clean:web": "yarn workspace @artemis-prime/chess-web clean",
"clean:rn": "yarn workspace @artemis-prime/chess-react-native clean",
"clean:all": "rm -rf ./node_modules && yarn clean:domain && yarn clean:web && yarn clean:rn"
},
"pnpm": {
"overrides": {
"@types/react": "^18.2.48"
}
}
}