forked from triggerdotdev/trigger.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.95 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
{
"name": "triggerdotdev",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"integrations/*"
],
"version": "0.0.1",
"prisma": {
"schema": "apps/webapp/prisma/schema.prisma",
"seed": "tsx apps/webapp/prisma/seed.ts"
},
"scripts": {
"build": "turbo run build",
"build:force": "turbo run build --force",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:migrate:dev": "turbo run db:migrate:dev",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed --no-cache",
"db:migrate:force": "turbo run db:migrate:force --no-cache",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"lint": "turbo run lint",
"docker:db": "docker-compose -f docker-compose.yml up -d",
"docker:db:stop": "docker-compose -f docker-compose.yml stop",
"docker:build": "turbo run docker:build",
"test": "turbo run test",
"test:dev": "turbo run test:dev",
"start": "turbo run start",
"clean": "turbo run clean",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"typecheck": "turbo run typecheck",
"test:e2e:dev": "turbo run test:e2e:dev",
"test:e2e:ci": "turbo run test:e2e:ci",
"setup": "turbo run generate db:migrate:force db:seed",
"env:pull": "turbo run env:pull",
"changeset:add": "changeset",
"changeset:version": "changeset version",
"changeset:release": "pnpm run build --filter \"@trigger.dev/*\" && changeset publish"
},
"devDependencies": {
"@manypkg/cli": "^0.19.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"autoprefixer": "^10.4.12",
"eslint-config-custom": "workspace:*",
"postcss": "^8.4.17",
"prettier": "^2.5.1",
"tailwindcss": "3.1.8",
"tsx": "^3.7.1",
"turbo": "^1.5.5"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.26.0"
}
}