forked from lovit-dev/lovit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.35 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.35 KB
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
{
"name": "lovit-monorepo",
"version": "1.0.0",
"private": true,
"description": "Next generation error handling library",
"type": "module",
"workspaces": [
"package",
"demo",
"site"
],
"scripts": {
"dev": "npm-run-all --parallel clean:demo-dist package:dev docs:dev",
"package:dev": "npm run dev --workspace=package",
"package:build": "npm run build --workspace=package",
"docs:dev": "npm run dev --workspace=site",
"docs:build": "npm run build --workspace=site",
"docs:preview": "npm run preview --workspace=site",
"demo": "rimraf .parcel-cache demo/dist && npm run start --workspace=demo",
"demo:build": "npm run build --workspace=demo",
"demo:mock-api": "npm run mock:api --workspace=demo",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --run --coverage",
"check:type": "npm-run-all check:type-package check:type-site",
"check:type-package": "npm run check:type --workspace=package",
"check:type-site": "npm run check:type --workspace=site",
"check:spell": "cspell .",
"lint": "eslint --cache --cache-strategy content .",
"format": "prettier --cache --write .",
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"release": "commit-and-tag-version",
"clean": "rimraf dist coverage .eslintcache node_modules",
"clean:demo-dist": "nodemon --watch package/dist --exec \"rimraf demo/dist\""
},
"devDependencies": {
"@cspell/eslint-plugin": "^9.0.1",
"@eslint/compat": "^1.2.9",
"@eslint/js": "^9.22.0",
"@types/node": "^22.15.18",
"@vitest/coverage-v8": "^3.1.3",
"@vitest/eslint-plugin": "^1.1.38",
"bundlewatch": "^0.4.1",
"commit-and-tag-version": "^12.5.0",
"cspell": "^9.0.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-file-progress": "^3.0.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-unicorn": "^59.0.1",
"globals": "^16.1.0",
"jiti": "^2.4.2",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.1.3"
}
}