-
Notifications
You must be signed in to change notification settings - Fork 558
/
package.json
67 lines (67 loc) · 2.21 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
61
62
63
64
65
66
67
{
"name": "@builder.io/mitosis-repo",
"workspaces": [
"packages/*",
"e2e/*",
"e2e/e2e-app/output/*",
"examples/**/*"
],
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"g:changeset": "yarn changeset",
"g:nx": "cd $INIT_CWD && nx",
"ci:release": "yarn ci:build:release && yarn workspace @builder.io/mitosis-cli fix-core-version && yarn changeset publish",
"ci:build:release": "nx run-many --skip-nx-cache --target build -p @builder.io/mitosis @builder.io/mitosis-cli @builder.io/eslint-plugin-mitosis @builder.io/create-mitosis",
"ci:build": "nx run-many --target build --exclude \"@builder.io/e2e-alpine\"",
"ci:lint": "yarn run lint:prettier && yarn run lint:eslint",
"ci:test": "nx run-many --target test",
"ci:e2e": "nx e2e @builder.io/e2e-app",
"test:update": "nx run-many -t test:update",
"fmt": "run-s \"fmt:*\"",
"fmt:eslint": "yarn lint:eslint --fix",
"fmt:prettier": "yarn lint:prettier --write",
"lint": "run-p -c \"lint:*\"",
"lint:eslint": "eslint --cache \"packages/**/*.ts{,x}\"",
"lint:prettier": "yarn run prettier --check",
"prettier": "prettier --cache --loglevel warn \"{packages,docs,e2e}/**/*.{js,jsx,ts,tsx,json,md,html}\""
},
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/mitosis"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@nrwl/nx-cloud": "15.0.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"esbuild": "0.19.10",
"esbuild-register": "3.3.2",
"eslint": "^7.11.0",
"eslint-plugin-unused-imports": "^2.0.0",
"execa": "6.1.0",
"npm-run-all": "^4.1.5",
"nx": "^19.0.8",
"nx-cloud": "^19.0.0",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "5.0.5",
"typescript": "^5.3.2"
},
"packageManager": "[email protected]",
"resolutions": {
"@sveltejs/[email protected]": "patch:@sveltejs/package@npm:1.0.0-next.1#.yarn/patches/@sveltejs-package-npm-1.0.0-next.1-2fd015530b.patch",
"prettier": "^2.8.7",
"vite": "4.5.0"
},
"dependenciesMeta": {
"nx": {
"built": false
},
"nx-cloud": {
"built": false
}
}
}