-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
39
40
41
{
"name": "mml-react-space",
"private": true,
"scripts": {
"preinstall": "node check-node-version.js",
"build": "lerna run --stream build",
"start": "npm run start -w server",
"iterate": "npm run build && lerna run --parallel --stream iterate",
"type-check-all": "lerna run --stream type-check",
"test-all": "lerna run --parallel --stream --no-bail test",
"lint-all": "lerna run --stream lint",
"lint-fix-all": "lerna run --stream lint:fix"
},
"workspaces": [
"packages/**/*"
],
"devDependencies": {
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"concurrently": "^9.1.2",
"esbuild": "0.25.0",
"esbuild-jest": "0.5.0",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-d.ts": "^1.3.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",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lerna": "8.1.9",
"prettier": "^3.5.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"typescript-eslint": "8.7.0"
},
"dependencies": {
"image-size": "^1.2.0"
}
}