-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 968 Bytes
/
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
{
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"type-check": "turbo type-check",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"start-user-app":"cd ./apps/web && npm run start",
"start-webhook-app":"cd ./apps/webhook && npm run start",
"build-webook-app":"cd ./apps/webhook && npm run build && cd ../..",
"build-user-app":"cd ./apps/web && npm run build && cd ../..",
"db:generate": "cd packages/database && npx prisma generate && cd ../.."
},
"devDependencies": {
"@repo/typescript-config": "*",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"chart.js": "^4.4.2",
"react-chartjs-2": "^5.2.0"
}
}