-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 892 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 892 Bytes
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
{
"name": "dolt-react-graphql-sample-app",
"packageManager": "yarn@3.6.1",
"workspaces": [
"packages/*"
],
"scripts": {
"ci": "npm-run-all compile lint build",
"check": "npm-run-all 'check:*'",
"check:graphql": "yarn workspace @sample/graphql-server run check-server",
"check:status": "./check-status.sh",
"compile": "npm-run-all 'compile:*'",
"compile:graphql": "yarn workspace @sample/graphql-server compile",
"compile:web": "yarn workspace @sample/web compile",
"build": "npm-run-all 'build:*'",
"build:graphql": "yarn workspace @sample/graphql-server build",
"build:web": "yarn workspace @sample/web build",
"lint": "npm-run-all 'lint:*'",
"lint:web": "yarn workspace @sample/web lint"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
},
"resolutions": {
"@types/react": "^18"
}
}