-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 942 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 942 Bytes
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
{
"name": "eco-monorepo-playground",
"version": "0.0.1",
"author": "Dmytro Parzhytskyi <parzhitsky@gmail.com>",
"private": true,
"repository": "https://github.com/eco-repositories/eco-monorepo-playground",
"workspaces": [
"packages/**/*"
],
"scripts": {
"play": "npm -w playground run dev",
"libs:init": "git submodule update --init --recursive",
"libs:install": "git submodule foreach \"npm ci\"",
"libs:build": "git submodule foreach \"npm run build -ws --if-present\""
},
"overrides": {
"@types/node": "$@types/node",
"vite": {
"esbuild": "$esbuild"
}
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.20.0",
"@types/eslint__eslintrc": "2.1.2",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"esbuild": "0.25.0",
"eslint": "9.19.0",
"typescript": "5.7.3"
}
}