forked from mml-io/mml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.3 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mml",
"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",
"npm-publish-all": "lerna run --no-bail --stream npm-publish",
"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",
"ci:e2e-tests": "concurrently --success command-1 --kill-others \"npm run iterate-without-build\" \"lerna run --stream ci:e2e-tests\"",
"e2e-tests": "lerna run --stream e2e-tests"
},
"workspaces": [
"packages/**/*",
"examples/**/*",
"e2e-tests"
],
"devDependencies": {
"@swc/core": "1.3.64",
"@swc/jest": "0.2.26",
"@types/jest": "29.5.2",
"@types/node": "20.3.1",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"concurrently": "^8.2.0",
"cross-env": "7.0.3",
"esbuild": "0.17.18",
"esbuild-jest": "0.5.0",
"esbuild-plugin-copy": "2.1.1",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "16.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-testing-library": "5.11.0",
"jest": "29.5.0",
"lerna": "^7.0.1",
"prettier": "2.8.8",
"publish-if-not-exists": "1.1.0",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
},
"optionalDependencies": {
"@nrwl/nx-linux-x64-gnu": "15.9.3"
}
}