|  | 
| 5 | 5 |   "engines": { | 
| 6 | 6 |     "node": "<18" | 
| 7 | 7 |   }, | 
| 8 |  | -  "scripts": { | 
| 9 |  | -    "docusaurus": "docusaurus", | 
| 10 |  | -    "start": "docusaurus start", | 
| 11 |  | -    "build": "docusaurus build --out-dir build/open-source/spectacle", | 
| 12 |  | -    "clear": "docusaurus clear", | 
| 13 |  | -    "serve": "formideploy serve", | 
| 14 |  | -    "deploy:stage": "formideploy deploy --staging", | 
| 15 |  | -    "deploy:prod": "formideploy deploy --production", | 
| 16 |  | -    "write-translations": "docusaurus write-translations", | 
| 17 |  | -    "write-heading-ids": "docusaurus write-heading-ids", | 
| 18 |  | -    "typecheck": "tsc" | 
| 19 |  | -  }, | 
| 20 | 8 |   "devDependencies": { | 
| 21 | 9 |     "@docusaurus/core": "^2.0.1", | 
| 22 | 10 |     "@docusaurus/module-type-aliases": "^2.0.1", | 
|  | 
| 41 | 29 |     "styled-components": "^5.3.5", | 
| 42 | 30 |     "typescript": "^4.6.3" | 
| 43 | 31 |   }, | 
|  | 32 | +  "scripts": { | 
|  | 33 | +    "docusaurus": "docusaurus", | 
|  | 34 | +    "start": "docusaurus start", | 
|  | 35 | +    "build": "docusaurus build --out-dir build/open-source/spectacle", | 
|  | 36 | +    "clear": "docusaurus clear", | 
|  | 37 | +    "serve": "formideploy serve", | 
|  | 38 | +    "deploy:stage": "formideploy deploy --staging", | 
|  | 39 | +    "deploy:prod": "formideploy deploy --production", | 
|  | 40 | +    "write-translations": "docusaurus write-translations", | 
|  | 41 | +    "write-heading-ids": "docusaurus write-heading-ids", | 
|  | 42 | +    "typecheck": "tsc", | 
|  | 43 | +    "lint": "wireit", | 
|  | 44 | +    "lint:fix": "wireit", | 
|  | 45 | +    "prettier": "wireit", | 
|  | 46 | +    "prettier:fix": "wireit" | 
|  | 47 | +  }, | 
|  | 48 | +  "wireit": { | 
|  | 49 | +    "lint": { | 
|  | 50 | +      "command": "nps lint:pkg -- -- \"*.js\" src", | 
|  | 51 | +      "files": [ | 
|  | 52 | +        "../.eslintignore", | 
|  | 53 | +        "../.eslintrc", | 
|  | 54 | +        "*.js", | 
|  | 55 | +        "src/**" | 
|  | 56 | +      ], | 
|  | 57 | +      "output": [], | 
|  | 58 | +      "packageLocks": [ | 
|  | 59 | +        "pnpm-lock.yaml" | 
|  | 60 | +      ] | 
|  | 61 | +    }, | 
|  | 62 | +    "lint:fix": { | 
|  | 63 | +      "command": "pnpm run lint || nps lint:pkg:fix -- -- \"*.js\" src", | 
|  | 64 | +      "files": [ | 
|  | 65 | +        "../.eslintignore", | 
|  | 66 | +        "../.eslintrc", | 
|  | 67 | +        "*.js", | 
|  | 68 | +        "src/**" | 
|  | 69 | +      ], | 
|  | 70 | +      "output": [], | 
|  | 71 | +      "packageLocks": [ | 
|  | 72 | +        "pnpm-lock.yaml" | 
|  | 73 | +      ] | 
|  | 74 | +    }, | 
|  | 75 | +    "prettier": { | 
|  | 76 | +      "command": "nps prettier:website -- -- \"*.js\" src", | 
|  | 77 | +      "files": [ | 
|  | 78 | +        "../.prettierignore", | 
|  | 79 | +        "../.prettierrc", | 
|  | 80 | +        "*.js", | 
|  | 81 | +        "src/**" | 
|  | 82 | +      ], | 
|  | 83 | +      "output": [], | 
|  | 84 | +      "packageLocks": [ | 
|  | 85 | +        "pnpm-lock.yaml" | 
|  | 86 | +      ] | 
|  | 87 | +    }, | 
|  | 88 | +    "prettier:fix": { | 
|  | 89 | +      "command": "pnpm run prettier || nps prettier:website:fix -- -- \"*.js\" src", | 
|  | 90 | +      "files": [ | 
|  | 91 | +        "../.prettierignore", | 
|  | 92 | +        "../.prettierrc", | 
|  | 93 | +        "*.js", | 
|  | 94 | +        "src/**" | 
|  | 95 | +      ], | 
|  | 96 | +      "output": [], | 
|  | 97 | +      "packageLocks": [ | 
|  | 98 | +        "pnpm-lock.yaml" | 
|  | 99 | +      ] | 
|  | 100 | +    } | 
|  | 101 | +  }, | 
| 44 | 102 |   "browserslist": { | 
| 45 | 103 |     "production": [ | 
| 46 | 104 |       ">0.5%", | 
|  | 
0 commit comments