-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
83 lines (83 loc) · 3.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pcd",
"version": "0.0.0",
"license": "GPL-3.0-or-later",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*/*",
"examples/*"
],
"nohoist": [
"*"
]
},
"scripts": {
"localdb:restart": "yarn localdb:down && yarn localdb:init && yarn localdb:up",
"localdb:init": "bash -c 'rm -rf apps/passport-server/local-db-data/ && initdb -U admin --pwfile=<(echo password) -A password -D apps/passport-server/local-db-data'",
"localdb:up": "pg_ctl -D apps/passport-server/local-db-data -l apps/passport-server/local-db-log -o \"-k $(mktemp -d)\" start",
"localdb:down": "pg_ctl -D apps/passport-server/local-db-data -l apps/passport-server/local-db-log stop",
"build": "scripts/build.sh",
"build:packages": "scripts/build.sh --filter=./packages/**/* --filter=!./apps/*",
"dev": "turbo watch dev --filter=./apps/*",
"dev:apps": "turbo run dev --parallel --filter=./apps/* --filter=!./apps/anon-message-client --filter=!./apps/anon-message-client --filter=!./apps/kudosbot-client",
"telegram:dev": "IS_LOCAL_HTTPS=true PASSPORT_SERVER_URL=https://dev.local:3002 PASSPORT_CLIENT_URL=https://dev.local:3000 yarn dev",
"docs": "yarn build && typedoc",
"lint": "turbo run lint --concurrency=4",
"test": "turbo run test --concurrency=1",
"test:ci": "turbo run test",
"gen-test-artifacts": "turbo run gen-test-artifacts",
"clean-test-artifacts": "turbo run clean-test-artifacts",
"prepublishOnly": "turbo run prepublishOnly --parallel",
"typecheck": "turbo run typecheck --parallel",
"clean": "turbo run clean --parallel && yarn clean:root",
"clean:root": "rm -rf node_modules",
"clean:workspaces": "turbo run clean --parallel && yarn",
"knip": "knip --no-gitignore",
"check-references": "scripts/check-references.sh",
"fix-references": "scripts/fix-references.sh",
"generate-package": "plop --no-progress --plopfile 'templates/package/plopfile.mjs'",
"test-generated-package": "tsx scripts/testTemplatePackage.ts",
"test-typedoc": "yarn typedoc --emit none",
"db:generate": "turbo run db:generate",
"db:push": "turbo run db:push",
"pre-deploy": "turbo run pre-deploy",
"esmeralda": "yarn workspace passport-server run parse-edge-esmeralda-events",
"postinstall": "patch-package"
},
"devDependencies": {
"@types/node": "^20.11.28",
"plop": "^4.0.1",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.2",
"typanion": "^3.14.0",
"typedoc": "^0.25.12",
"typescript": "^5.3.3",
"verdaccio": "^5.27.0",
"verdaccio-memory": "^10.3.2"
},
"engines": {
"node": "20"
},
"dependencies": {
"@changesets/cli": "^2.26.0",
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.10.4",
"@types/react": "^18.0.22",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"tsx": "^4.6.2",
"turbo": "^2.0.4",
"workspace-tools": "^0.36.4",
"zx": "^7.2.3"
},
"resolutions": {
"@types/react": "^18.0.22",
"@typescript-eslint/typescript-estree": "^7.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]"
}