-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.82 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
{
"name": "crossed-monorepo",
"private": true,
"version": "0.1.0",
"description": "cross ui lib react-native and web",
"scripts": {
"web": "cd apps/web && yarn dev",
"documentation": "turbo run dev --filter=crossed-doc",
"test": "turbo run test --concurrency 1",
"dev": "turbo run dev",
"watch": "turbo run watch --filter=@crossed* --filter=vite-plugin-crossed-styled --no-cache",
"build": "turbo run build --filter=@crossed* --no-cache",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mdx}\"",
"type-check": "turbo run type-check",
"lint": "eslint packages/**/src apps/crossed-native apps/doc --ext .ts,.tsx --config .eslintrc && turbo run type-check",
"release": "pnpm build && pnpm publish -r",
"coverage-merge": "istanbul-merge --out coverage.raw.json **/coverage/coverage-final.json && istanbul report --include coverage.json --dir coverage html"
},
"main": "index.js",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@babel/runtime": "^7.22.10",
"@changesets/cli": "^2.26.2",
"@commitlint/config-conventional": "^17.3.0",
"@react-native-community/eslint-config": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"commitlint": "^17.3.0",
"eslint": "^8.29.0",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"istanbul": "^0.4.5",
"istanbul-merge": "^2.0.0",
"lint-staged": "^13.1.0",
"prettier": "^3.2.5",
"release-it": "^15.5.1",
"tsc-files": "^1.1.3",
"turbo": "latest",
"typescript": "^5.4.2"
},
"resolutions": {
"react-refresh": "~0.14.0"
},
"packageManager": "pnpm@8.7.4"
}