-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "microbit-ui-monorepo",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"storybook": "npm run storybook -w @microbit/ui-storybook",
"build-storybook": "npm run build-storybook -w @microbit/ui-storybook",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"ci": "npm run typecheck && npm run lint && npm run test && npm run i18n:tidy -- --check && npm run build-storybook",
"i18n:tidy": "microbit-i18n tidy",
"format": "prettier --write --list-different .",
"format:check": "prettier --check .",
"lint": "eslint . --max-warnings 0",
"i18n:download": "microbit-i18n download",
"i18n:upload": "microbit-i18n upload",
"i18n:status": "microbit-i18n status"
},
"devDependencies": {
"@microbit/eslint-config": "^0.2.0",
"eslint": "^10.9.1",
"eslint-plugin-storybook": "^10.5.10",
"prettier": "3.3.2"
},
"overrides": {
"postcss": "^8.5.26"
},
"allowScripts": {
"esbuild": true,
"fsevents": true
}
}