forked from BuilderIO/mitosis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2 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
{
"name": "@builder.io/mitosis-repo",
"workspaces": [
"packages/*",
"examples/*"
],
"private": true,
"version": "0.0.0",
"engines": {
"node": ">=14",
"npm": "99999999.9.9"
},
"scripts": {
"lerna": "lerna",
"ci:build": "yarn workspaces foreach -pt --exclude \"*/e2e*\" --exclude @builder.io/mitosis-fiddle --verbose run build",
"ci:fiddle-build": "yarn workspaces foreach -pt --include @builder.io/mitosis-fiddle --verbose run build",
"ci:lint": "yarn run lint:prettier && yarn run lint:eslint",
"ci:test": "yarn workspaces foreach run test --passWithNoTests",
"ci:e2e-prep": "playwright install --with-deps",
"ci:e2e-build": "yarn workspaces foreach -pt --include \"*/e2e*\" --verbose run build",
"ci:e2e": "yarn workspaces foreach --verbose run e2e",
"ci": "run-s \"ci:*\"",
"commit": "git-cz",
"fix": "run-p -c 'lint:* --fix'",
"fmt": "yarn fmt:prettier",
"fmt:prettier": "yarn lint:prettier --write",
"lint": "run-p -c lint:*",
"lint:eslint": "eslint 'packages/**/*.ts{,x}'",
"lint:prettier": "yarn run prettier --check",
"prerelease": "yarn build",
"prettier": "prettier --loglevel warn '{packages,docs}/**/*.{js,jsx,ts,tsx,json,md,html}'",
"release": "lerna publish",
"release:dev": "cd packages/core && yarn run release:dev && cd ../cli && yarn run release:dev"
},
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/mitosis"
},
"devDependencies": {
"@babel/preset-env": "^7.6.0",
"@playwright/test": "^1.22.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"commitizen": "^3.0.2",
"esbuild": "0.14.25",
"esbuild-register": "3.3.2",
"eslint": "^7.11.0",
"eslint-plugin-unused-imports": "^2.0.0",
"execa": "6.1.0",
"lerna": "^3.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"typescript": "^4.2.3"
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/core": "^7.18.2"
}
}