-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.56 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.56 KB
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
{
"devDependencies": {
"@eslint/js": "^9.18.0",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.13.10",
"concurrently": "^9.1.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-file-extension-in-import-ts": "^2.1.1",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
},
"engines": {
"node": ">=20.0.0"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/overture-stack/arranger.git"
},
"scripts": {
"clear:nodeModules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"components:watch": "npm run watch --w modules/components",
"modules:build": "npm run build --w modules",
"modules:tag": "npm version --ws --force-publish --yes",
"modules:watch": "npm run watch --w modules",
"publish::ci": "npm publish --ws --if-present",
"reset": "npm run clear:nodeModules && npm run clear:dist --ws --if-present",
"test": "npm run test --ws --if-present",
"test:watch": "concurrently --group \"npm:modules:watch\" --group \"npm:test:watch --w modules/components -w integration-tests/import\"",
"server": "npm run start --w modules/server",
"server:dev": "npm run dev --w modules/server",
"server:watch": "npm run watch --w modules/server"
},
"type": "module",
"workspaces": [
"integration-tests/import",
"integration-tests/server",
"modules/components",
"modules/server"
]
}