-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.17 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
{
"name": "foresightjs-monorepo",
"private": true,
"type": "module",
"scripts": {
"dev": "node ./scripts/dev-select.js",
"build": "pnpm --filter \"js.foresight*\" --filter \"@foresightjs/*\" build",
"build:prod": "pnpm --filter \"js.foresight*\" --filter \"@foresightjs/*\" build:prod",
"docs:start": "pnpm --filter docs start",
"docs:build": "pnpm --filter docs build",
"fsinfo": "node ./scripts/list-packages.js",
"test": "pnpm --filter \"./packages/**\" test",
"test:watch": "pnpm --filter \"./packages/**\" test:watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"clean": "rm -rf node_modules pnpm-lock.yaml"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@vue/eslint-config-typescript": "^14.7.0",
"eslint": "^10.2.0",
"eslint-plugin-lit": "^2.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-vue": "~10.8.0",
"eslint-plugin-wc": "^3.1.0",
"fallow": "^2.52.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.16"
}
}