forked from richardguerre/flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "flow",
"description": "A open source alterantive to Sunsama but for personal use only.",
"version": "1.0.0",
"private": true,
"author": "@richardguerre",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*",
"plugins/*",
"plugin-apps/*"
],
"scripts": {
"dev": "turbo run dev",
"db:dev": "npm run db:dev -w apps/server",
"db:reset": "npm run db:reset -w apps/server",
"db:seed": "npm run db:seed -w apps/server",
"build": "turbo run build && npm run post-build -w apps/server",
"format": "prettier --write .",
"format:check": "prettier --check .",
"---------patch---------": "",
"postinstall": "patch-package",
"-------codespaces-------": "",
"codepsaces": "npm run env:codespaces && npm run db:reset",
"env:codespaces": "turbo run env:codespaces",
"---------util---------": "",
"clean": "npm run clean:root && npm run clean:apps && npm run clean:packages",
"clean:root": "rm -rf ./node_modules",
"clean:apps": "rm -rf ./apps/**/node_modules",
"clean:packages": "rm -rf ./packages/**/node_modules"
},
"devDependencies": {
"dotenv": "^16.0.2",
"dotenv-expand": "^9.0.0",
"patch-package": "^6.0.2",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"turbo": "^1.10.4"
},
"prettier": {
"printWidth": 100
}
}