-
-
Notifications
You must be signed in to change notification settings - Fork 356
/
package.json
62 lines (62 loc) · 2.05 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
54
55
56
57
58
59
60
61
62
{
"name": "rallly",
"private": true,
"version": "3.11.2",
"scripts": {
"dev": "turbo dev --filter=@rallly/web",
"dev:emails": "turbo dev --filter=@rallly/emails",
"dev:landing": "dotenv -c development turbo dev --filter=@rallly/landing",
"start": "turbo run start --filter=@rallly/web",
"build": "dotenv -c -- turbo run build --filter=@rallly/web",
"build:web": "turbo run build --filter=@rallly/web",
"build:landing": "turbo run build --filter=@rallly/landing",
"build:test": "turbo build:test",
"docs:dev": "turbo dev --filter=@rallly/docs...",
"db:deploy": "prisma migrate deploy",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:reset": "prisma migrate reset",
"docker:up": "docker compose -f docker-compose.dev.yml up -d && wait-on --timeout 60000 tcp:localhost:5450",
"docker:down": "docker compose -f docker-compose.dev.yml down --volumes --remove-orphans",
"test:integration": "turbo test:integration",
"test:unit": "turbo test:unit",
"lint": "turbo lint",
"i18n:scan": "turbo i18n:scan",
"type-check": "turbo type-check",
"format": "prettier --write .",
"release": "./scripts/create-release.sh",
"sherif": "npx sherif@latest",
"sherif:fix": "npx sherif@latest --fix"
},
"prisma": {
"seed": "yarn workspace @rallly/database db:seed",
"schema": "./packages/database/prisma/schema.prisma"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@prisma/client": "^6.0.1",
"@sentry/nextjs": "^8.32.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"dotenv-cli": "^7.1.0",
"framer-motion": "^10.16.4",
"next": "^14.2.15",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.4",
"turbo": "^2.1.1",
"typescript": "^5.2.2",
"vitest": "^2.1.1",
"zod": "^3.23.8"
},
"engines": {
"node": "20.x"
},
"packageManager": "yarn@1.22.22"
}