forked from t3-oss/create-t3-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.76 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
{
"name": "@bsmnt/hydra",
"version": "0.0.0",
"description": "Quickest way to start a new web app with full stack typesafety",
"author": "Shoubhit Dash <[email protected]> (https://nexxel.dev)",
"maintainers": [
"Julius Marminge <[email protected]> (https://jumr.dev)"
],
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/basementstudio/hydra.git"
},
"keywords": [],
"engines": {
"node": "16.x"
},
"packageManager": "[email protected]",
"scripts": {
"typecheck": "turbo typecheck",
"build:cli": "turbo --filter=create-bsmnt-app build",
"build": "turbo build",
"start:cli": "turbo --filter=create-bsmnt-app start",
"dev:cli": "turbo --filter=create-bsmnt-app dev",
"clean": "turbo clean && rm -rf node_modules",
"lint": "turbo lint",
"format": "turbo format && prettier --write *.{cjs,md,json}",
"format:check": "turbo format:check && prettier --check *.{cjs,md,json}",
"check": "turbo lint typecheck format:check && manypkg check",
"release": "changeset version",
"pub:beta": "cd cli && pnpm pub:beta",
"pub:release": "cd cli && pnpm pub:release"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"@manypkg/cli": "^0.19.2",
"@types/node": "^18.8.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-turbo": "^0.0.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "44.0.0",
"prettier": "^2.8.0",
"turbo": "^1.5.5",
"typescript": "^4.9.3"
}
}