-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.89 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "root",
"version": "0.0.0",
"description": "Preshape monorepo root - See workspaces/package for the preshape package code",
"repository": "[email protected]:HHogg/preshape.git",
"author": "Harry Hogg <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"browserslist": "> 0.5%, last 2 versions, not dead",
"packageManager": "[email protected]",
"workspaces": [
"workspaces/**"
],
"scripts": {
"build": "yarn workspaces foreach -ptvR --from site run build",
"clean": "yarn workspaces foreach -ptvR --from site run clean",
"dev": "yarn workspaces foreach -pviR --from site -j unlimited run dev",
"format": "prettier --write .",
"lint": "yarn lint:js && yarn lint:css",
"lint:css": "stylelint workspaces/**/src/**/*.css",
"lint:js": "eslint --fix",
"deploy:lib": "semantic-release",
"deploy:site": "firebase deploy",
"preview": "yarn workspace site run preview"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"firebase-tools": "^13.18.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.1",
"semantic-release-replace-plugin": "^1.2.7",
"stylelint": "^16.9.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.1",
"typescript": "~5.5.0"
}
}