forked from chibisafe/chibisafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "chibisafe",
"version": "6.4.2",
"description": "Blazing fast file uploader and bunker written in node! 🚀",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "turbo run format",
"postinstall": "is-ci || husky",
"generate": "yarn workspace @chibisafe/backend generate",
"migrate": "yarn workspace @chibisafe/backend migrate",
"start": "yarn workspace @chibisafe/backend start",
"migrate-v4-to-v5": "yarn workspace @chibisafe/migration start",
"dev:backend": "yarn workspace @chibisafe/backend dev",
"dev:frontend": "yarn workspace @chibisafe/next dev",
"start:backend": "yarn workspace @chibisafe/backend start",
"start:frontend": "yarn workspace @chibisafe/next start",
"update": "yarn upgrade-interactive"
},
"author": {
"name": "Pitu",
"email": "heyitspitu@gmail.com",
"url": "https://github.com/Pitu"
},
"license": "MIT",
"engines": {
"node": ">=18.9.0"
},
"packageManager": "yarn@4.1.1",
"workspaces": [
"packages/backend",
"packages/next"
],
"devDependencies": {
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"turbo": "1.10.13",
"typescript": "^5.4.4"
}
}