-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.45 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
{
"name": "@ranger-theme/zustand",
"version": "0.1.0",
"private": true,
"config": {
"cz-customizable": {
"config": "./.cz-config.js"
}
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"preinstall": "npx only-allow pnpm",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "pnpm run clean:turbo && pnpm run clean:node_modules && pnpm run clean:next",
"clean:turbo": "find . -name '.turbo' -type d -prune -exec rm -rf '{}' +",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:next": "find . -name '.next' -type d -prune -exec rm -rf '{}' +",
"clean:dist": "find . -name 'dist' -type d -prune -exec rm -rf '{}' +",
"ngrok": "node ./ngrok.js",
"husky:prepare": "husky install"
},
"dependencies": {
"ngrok": "5.0.0-beta.2",
"only-allow": "^1.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@ranger-theme/branchlint-config": "^0.1.0",
"@ranger-theme/commitizen-config": "^0.2.0",
"@ranger-theme/commitlint-config": "^0.4.0",
"@ranger-theme/eslint-config": "^0.5.0",
"@ranger-theme/prettier-config": "^0.2.0",
"@ranger-theme/stylelint-config": "^0.3.0",
"@ranger-theme/ts-config": "^0.1.0",
"eslint": "^8.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"turbo": "^2.0.9"
},
"packageManager": "pnpm@8.9.0",
"engines": {
"node": ">=18.17.0"
}
}