-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
35 lines (35 loc) · 951 Bytes
/
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
{
"name": "mml-playground",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"build": "lerna run --stream build",
"start": "npm run start -w @mml-playground/server",
"iterate": "npm run build && lerna run --parallel --stream iterate",
"type-check-all": "lerna run --stream type-check",
"lint-all": "lerna run --stream lint",
"lint-fix-all": "lerna run --stream lint:fix"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "9.11.1",
"@types/eslint__js": "8.42.3",
"concurrently": "9.1.2",
"esbuild": "0.24.2",
"esbuild-plugin-copy": "2.1.1",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"lerna": "8.1.9",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.7.0"
}
}