-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
38 lines (38 loc) · 1.08 KB
/
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
36
37
38
{
"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": {
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"concurrently": "8.2.2",
"esbuild": "0.21.2",
"esbuild-plugin-copy": "2.1.1",
"eslint": "8.57.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"lerna": "8.1.3",
"prettier": "3.2.5",
"rimraf": "5.0.7",
"typescript": "5.4.5",
"tsx": "4.10.2"
}
}