-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 2.22 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
54
55
56
57
58
59
{
"name": "hogg.io",
"version": "0.0.0",
"author": "Harry Hogg <[email protected]>",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"workspaces": [
"./workspaces/*"
],
"scripts": {
"build": "yarn workspaces foreach -ptvR --from @hogg/website run build",
"clean": "yarn clean:root && yarn clean:workspaces",
"clean:root": "rm -rf .firebase target yarn-error.log",
"clean:workspaces": "yarn workspaces foreach -ptvR --from @hogg/website run clean",
"deploy": "firebase deploy",
"dev": "yarn workspaces foreach -pviR --from @hogg/website -j unlimited run dev",
"format": "prettier --write .",
"lint": "yarn lint:css & yarn lint:js && yarn lint:rust",
"lint:css": "stylelint workspaces/**/*.css",
"lint:js": "eslint 'workspaces/**/*.tsx' 'workspaces/**/*.ts' --fix",
"lint:rust": "yarn lint:rust:clippy && yarn lint:rust:fmt",
"lint:rust:clippy": "cargo clippy --all-targets --all-features -- -D warnings",
"lint:rust:fmt": "cargo fmt --all -- --check",
"preview": "yarn workspace @hogg/website preview",
"test": "yarn test:rust",
"test:ci": "yarn test:rust:ci",
"test:rust": "cargo watch -x 'test -- --test-threads=1'",
"test:rust:ci": "cargo test -- --test-threads=1",
"test:rust:clean": "cargo insta test --unreferenced=delete",
"test:rust:review": "cargo insta review --include-ignored",
"ts:check": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.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.3.0",
"knip": "^5.0.1",
"prettier": "^2.8.8",
"stylelint": "^15.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^12.0.0",
"stylelint-config-standard": "^33.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"preshape": "^19.1.5"
}
}