forked from mml-io/mml-playground
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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": "16.x"
},
"scripts": {
"preinstall": "node check-node-version.js",
"build": "lerna run --stream build",
"start": "npm run start -w @mml-playground/server",
"iterate": "lerna run --parallel --stream iterate",
"type-check": "lerna run --stream type-check",
"lint": "lerna run --stream lint",
"lint:fix": "lerna run --stream lint:fix"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"concurrently": "^8.1.0",
"esbuild": "0.17.19",
"esbuild-plugin-copy": "2.1.1",
"eslint": "^8.42.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"lerna": "6.6.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.0.2"
},
"dependencies": {
"node-fetch": "^3.3.1"
}
}