-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.15 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.15 KB
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
{
"name": "breathclean",
"version": "1.0.0",
"private": true,
"description": "BreathClean monorepo",
"type": "module",
"scripts": {
"dev:client": "npm --prefix client run dev",
"dev:server": "npm --prefix server run dev",
"build:client": "npm --prefix client run build",
"build:server": "npm --prefix server run build",
"lint": "npm --prefix client run lint && npm --prefix server run lint",
"lint:client": "npm --prefix client run lint",
"lint:server": "npm --prefix server run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mdx,css}\"",
"check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mdx,css}\"",
"check-types:client": "npm --prefix client run check-types",
"check-types:server": "npm --prefix server run check-types",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2"
},
"dependencies": {
"@upstash/redis": "^1.36.2",
"node-cron": "^4.2.1"
}
}