-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@mittwald/flow-project",
"private": true,
"version": "0.0.0",
"packageManager": "[email protected]",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20.11"
},
"scripts": {
"all": "nx run-many --targets=\"$@\"",
"build": "run all build",
"build:deps:watch": "nx watch --projects=$@ --includeDependentProjects -- nx run-many --targets=build --projects=$(tsx dev/nxDependencies.ts $@)",
"components": "nx run @mittwald/flow-react-components:\"$@\"",
"dev:init-githooks": "yarn dlx simple-git-hooks",
"docs": "nx run @mittwald/flow-documentation:\"$@\"",
"format": "prettier --write '**/*.{ts,tsx,yaml,yml,json,md,mdx,js,cjs,mjs,css}'",
"lint": "eslint .",
"test": "run all test"
},
"simple-git-hooks": {
"post-checkout": "yarn install",
"post-merge": "yarn install",
"pre-commit": "yarn lint"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@nx/devkit": "^20.1.3",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prettier": "^5.2.1",
"lerna": "^8.1.9",
"nx": "^20.1.3",
"prettier": "^3.4.1",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-pkgsort": "^0.2.1",
"prettier-plugin-sort-json": "^4.0.0",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependenciesMeta": {
"@fortawesome/fontawesome-common-types": {
"unplugged": true
},
"@fortawesome/react-fontawesome": {
"unplugged": true
},
"@react-types/menu": {
"unplugged": true
},
"@react-types/shared": {
"unplugged": true
},
"@types/react": {
"unplugged": true
},
"react-aria-components": {
"unplugged": true
},
"ts-node": {
"unplugged": true
}
},
"workspaces": [
"packages/*"
]
}