-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.99 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
{
"name": "nerdfishui",
"private": true,
"author": "Daren Malfait <[email protected]> (https://nerdfish.be)",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=!docs",
"changeset": "changeset",
"changeset:release": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile && git add .",
"checks": "npm-run-all2 format lint typecheck",
"checks:fix": "npm-run-all2 format:fix lint:fix typecheck",
"clean": "turbo clean && rm -rf node_modules && rm -rf .turbo",
"dev": "turbo run dev --no-cache --continue",
"format": "prettier . --check --cache --cache-location=\"node_modules/.cache/prettiercache\"",
"format:fix": "prettier . --write --cache --cache-location=\"node_modules/.cache/prettiercache\" --log-level=warn",
"preinstall": "npx only-allow pnpm",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix --cache --cache-location \"node_modules/.cache/.eslintcache\" --max-warnings 0",
"prepare": "husky",
"release": "turbo run build --ignore=docs^... && changeset publish",
"typecheck": "turbo typecheck",
"vercel-build": "turbo build"
},
"prettier": "@nerdfish/config/prettier",
"dependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"rollup": "^4.34.8",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-preserve-directives": "^0.4.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@nerdfish/config": "^1.8.0",
"eslint": "^9.21.0",
"execa": "^9.5.2",
"husky": "^9.1.7",
"prettier": "^3.5.2",
"turbo": "^2.4.4"
},
"packageManager": "[email protected]"
}