forked from BuilderIO/mitosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 2.02 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
{
"name": "@builder.io/mitosis-repo",
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"private": true,
"engines": {
"node": "12",
"npm": "Please use yarn instead of NPM to install dependencies",
"yarn": ">=1.22.4 <2"
},
"scripts": {
"lerna": "lerna",
"ci:build": "lerna run build",
"ci:lint": "npm run lint:prettier",
"ci:test": "lerna run test --stream",
"commit": "git-cz",
"fix": "run-p -c 'lint:* --fix'",
"fmt": "npm run fmt:prettier",
"fmt:prettier": "npm run lint:prettier -- --write",
"lint": "run-p -c lint:*",
"lint:css": "stylelint 'packages/**/*.ts{,x}'",
"lint:eslint": "eslint 'packages/**/*.ts{,x}'",
"lint:prettier": "npm run prettier -- --check",
"prerelease": "npm run build",
"prettier": "prettier '{packages,docs}/**/*.{js,jsx,ts,tsx,json,md,html}'",
"release": "lerna publish",
"bazel:format": "find . -type f \\( -name \"*.bzl\" -or -name WORKSPACE -or -name BUILD -or -name BUILD.bazel \\) ! -path \"*/node_modules/*\" ! -path \"*/.history/*\" | xargs buildifier -v --warnings=attr-cfg,attr-license,attr-non-empty,attr-output-default,attr-single-file,constant-glob,ctx-actions,ctx-args,depset-iteration,depset-union,dict-concatenation,duplicated-name,filetype,git-repository,http-archive,integer-division,load,load-on-top,native-build,native-package,out-of-order-load,output-group,package-name,package-on-top,positional-args,redefined-variable,repository-name,same-origin-load,string-iteration,unsorted-dict-items,unused-variable",
"bazel:lint": "npm run bazel:format --lint=warn",
"bazel:lint-fix": "npm run bazel:format --lint=fix"
},
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/mitosis"
},
"devDependencies": {
"commitizen": "^3.0.2",
"lerna": "^3.4.0",
"prettier": "^1.19.1",
"typescript": "^4.2.3",
"@babel/preset-env": "^7.6.0",
"@bazel/bazelisk": "^1.7.5",
"@bazel/buildifier": "^4.0.1",
"@bazel/ibazel": "^0.15.10",
"@bazel/typescript": "^3.5.0"
}
}