-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.52 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
{
"name": "argue-workspace",
"private": true,
"version": "0.6.1",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npx concurrently -n argue,cli -c blue,green \"npm run -w packages/argue dev\" \"npm run -w packages/argue-cli dev\"",
"dev:viewer": "npm run -w packages/argue-viewer dev",
"build:viewer": "npm run -w packages/argue-viewer build",
"check:viewer": "npm run -w packages/argue-viewer check",
"test:viewer": "npm run -w packages/argue-viewer test",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "npm run -ws --if-present build",
"check": "npm run -ws --if-present check",
"test": "npm run -ws --if-present test",
"test:watch": "npm run -ws --if-present test:watch",
"ci": "npm run check && npm run test && npm run build",
"smoke:pack": "node ./scripts/smoke-packages.mjs",
"release:check": "npm run ci && npm run smoke:pack",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,mjs,json,md}": "prettier --write",
"*.{ts,js,mjs}": "eslint --fix"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.2.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.6.2",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}