forked from mml-io/mml
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.25 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.25 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mml",
"type": "module",
"scripts": {
"preinstall": "node ./check-node-version.js",
"serve": "lerna run --parallel --stream serve",
"serve-debug": "lerna run --parallel --stream serve-debug",
"build": "lerna run --stream build",
"start": "npm run iterate",
"iterate": "npm run build && npm run iterate-without-build",
"iterate-without-build": "lerna run --parallel --stream iterate",
"test-all": "lerna run --parallel --stream --no-bail test",
"lint-all": "lerna run --parallel --no-bail lint",
"lint-fix-all": "lerna run --parallel --no-bail lint-fix",
"type-check-all": "lerna run --parallel --no-bail type-check",
"check": "npm run build && npm run type-check-all && npm run lint-all",
"link-all": "lerna exec \"npm link\" --no-private && npm run print-links",
"print-links": "echo \"Run this command in the package you would like to link this repo's packages to:\n\"; echo \"npm link\" $(lerna ls --loglevel=error)",
"version": "lerna version --no-push --force-publish",
"ci:e2e-tests": "lerna run --stream ci:e2e-tests",
"e2e-tests": "lerna run --stream e2e-tests"
},
"workspaces": [
"packages/**/*",
"examples/**/*",
"e2e-tests",
"integration-tests/**/*",
"github-pages-publisher"
],
"devDependencies": {
"@babel/preset-typescript": "7.24.7",
"@eslint/js": "9.11.1",
"@swc/core": "1.7.28",
"@swc/jest": "0.2.36",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.13",
"@types/jju": "1.4.5",
"@types/node": "22.7.0",
"@types/resolve": "1.20.6",
"@types/tmp": "0.2.6",
"concurrently": "9.0.1",
"cross-env": "7.0.3",
"esbuild": "0.24.0",
"esbuild-jest": "0.5.0",
"esbuild-plugin-copy": "2.1.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",
"jju": "1.4.0",
"lerna": "8.1.8",
"prettier": "3.3.3",
"publish-if-not-exists": "1.1.0",
"resolve": "1.22.8",
"tmp": "0.2.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsx": "4.19.1",
"typescript": "5.5.4",
"typescript-eslint": "8.7.0"
},
"optionalDependencies": {
"@nrwl/nx-linux-x64-gnu": "15.9.3"
}
}