-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 2.02 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
{
"name": "@noodlestan/designer",
"version": "0.0.6",
"description": "Modeling design decisions. Schemas, transformations, visualizations, the works.",
"author": "Noodlestan Collective",
"license": "MIT",
"private": true,
"workspaces": [
"packages/apps/*",
"packages/clis/*",
"packages/docs/*",
"packages/libs/*",
"tools/*"
],
"engines": {
"node": "20.10.0"
},
"scripts": {
"lint": "prettier . -c && eslint .",
"lint:fix": "prettier . -c --write && eslint . --fix",
"lint:silent": "prettier . -c --log-level silent && eslint .",
"ci:libs:decisions": "npm run --prefix packages/libs/designer-decisions ci",
"ci:libs:functions": "npm run --prefix packages/libs/designer-functions ci",
"ci:libs:shows": "npm run --prefix packages/libs/designer-shows ci",
"ci:libs": "npm run ci:libs:decisions && npm run ci:libs:functions && npm run ci:libs:shows",
"ci:clis:generators": "npm run --prefix packages/clis/designer-generators ci",
"ci:clis": "npm run ci:clis:generators",
"ci:generate:schemas": "npm run --prefix tools/designer-build build:schemas",
"ci:libs:schemas": "npm run --prefix packages/libs/designer-schemas ci",
"ci:schemas": "npm run ci:generate:schemas && npm run ci:libs:schemas",
"ci:docs:designer": "npm run --prefix packages/docs/designer-docs ci",
"ci:docs": "npm run ci:docs:designer",
"ci": "npm run ci:libs && npm run ci:clis && npm run ci:schemas && npm run ci:docs",
"build:deps": "npm run ci:libs && npm run ci:clis && npm run ci:schemas"
},
"devDependencies": {
"@noodlestan/eslint-config": "0.0.4",
"@typescript-eslint/eslint-plugin": "8.11.0",
"dotenv": "16.3.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-solid": "0.14.3",
"lefthook": "1.5.5",
"prettier": "3.3.3",
"typescript": "5.6.3",
"vitest": "1.6.0"
}
}