forked from mml-io/mml-react-space
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.5 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
42
43
44
45
46
47
48
{
"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.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"concurrently": "^8.2.2",
"esbuild": "0.21.4",
"esbuild-jest": "0.5.0",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-d.ts": "^1.2.3",
"eslint": "8.57.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"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",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-n": "^16.0.1",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-testing-library": "6.2.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lerna": "8.1.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
},
"dependencies": {
"image-size": "^1.1.1"
}
}