forked from mml-io/mml-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "mml-playground",
"private": true,
"engines": {
"node": "18.x"
},
"scripts": {
"preinstall": "node check-node-version.js",
"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": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"concurrently": "8.2.2",
"esbuild": "0.20.0",
"esbuild-plugin-copy": "2.1.1",
"eslint": "8.56.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"lerna": "8.0.2",
"prettier": "3.2.4",
"rimraf": "5.0.5",
"typescript": "5.3.3",
"tsx": "4.7.0"
}
}