-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 849 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 849 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
29
30
31
{
"name": "react-app-blueprint",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "yarn workspace app dev",
"start": "yarn workspace app dev",
"build": "yarn workspace app build",
"docs": "yarn workspace docs start",
"test": "yarn workspace app test",
"test-ci": "yarn workspace app test --coverage.enabled",
"generate-coverage": "npx istanbul-badges-readme --coverageDir='./app/coverage'"
},
"resolutions": {
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest"
},
"devDependencies": {
"istanbul-badges-readme": "^1.9.0",
"prettier": "3.6.2"
},
"volta": {
"node": "22.12.0",
"yarn": "4.6.0"
},
"workspaces": [
"app",
"deployment",
"docs"
]
}