-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"name": "@slimr/monorepo",
"version": "0.0.0",
"type": "module",
"author": "Brian Dombrowski",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/bdombro/slimr.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun scripts/build.ts --all --exclude demo",
"build:dirty": "bun scripts/build.ts --dirty --exclude demo",
"clean": "npm run -ws clean",
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:watch": "npx nodemon -e js,jsx,ts,tsx,css,pcss --exec 'npm run lint'",
"update": "npx npm-check-updates",
"precommit": "npm i && run-s build lint 'test -- --run'",
"preinstall": "echo npm run precommit > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"publish:all": "bun scripts/publish.ts --bump --all --exclude demo",
"publish:dirty": "bun scripts/publish.ts --bump --dirty --exclude demo",
"publish:demo": "bun scripts/deploy-demo.ts",
"start": "npm run -w @slimr/demo start",
"test": "vitest"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^3.0.0",
"jsdom": "^21.1.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3",
"vite": "^4.0.0",
"vitest": "3.2.4"
}
}