-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
61 lines (61 loc) · 1.96 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
{
"name": "pintora",
"private": true,
"description": "Monorepo for pintora project",
"workspaces": [
"./packages/*",
"./website",
"./demo"
],
"scripts": {
"build-site": "sh ./scripts/build-site.sh",
"ci:coverage": "pnpm exec jest --coverage --ci",
"clean": "rimraf \"packages/**/lib\"",
"compile": "pnpm exec turbo run compile --concurrency=10",
"compile:browser": "pnpm exec turbo run compile --concurrency=10 --filter='!@pintora/cli'",
"coverage": "pnpm exec jest --coverage",
"demo:dev": "cd demo && npm run dev",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"lint": "eslint packages/*/src/**/*.{ts,js}",
"prepare": "turbo run prepare-setup",
"prettier": "prettier \"packages/*/src/**/*.{ts,js}\" \"demo/src\"",
"test": "pnpm exec jest",
"upload-coverage": "codecov -f coverage/coverage-final.json",
"vercel-build": "npm run compile:browser && npm run build-site",
"watch": "pnpm exec turbo run watch --concurrency=10 --no-cache",
"watch:browser": "pnpm exec turbo run watch --concurrency=10 --no-cache --no-deps --filter='@pintora/diagrams'",
"website:dev": "cd website && npm run start"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.24.1",
"@types/eslint__js": "^8.42.0",
"@types/jest": "^29.0.0",
"codecov": "^3.8.3",
"esbuild-jest": "^0.5.0",
"eslint": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.3",
"rimraf": "5.0.7",
"turbo": "^2.0.4",
"typescript": "^5.0.0",
"typescript-eslint": "^7.0.0"
},
"packageManager": "[email protected]"
}