-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.47 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
{
"name": "root",
"private": true,
"type": "module",
"scripts": {
"our:setup": "node setup.mjs",
"dump:data": "env $(cat .env | xargs) sh -c 'pg_dump \"$SUPERUSER_DATABASE_URL\" --data-only --schema app_public --schema app_hidden --schema app_private --on-conflict-do-nothing --column-inserts --no-comments'",
"dump:schema": "env $(cat .env | xargs) sh -c 'pg_dump \"$SUPERUSER_DATABASE_URL\" --no-sync --schema-only --no-owner --exclude-schema=graphile_migrate --exclude-schema=graphile_worker'",
"dump:database": "env $(cat .env | xargs) sh -c 'pg_dump \"$SUPERUSER_DATABASE_URL\" --no-sync'",
"schema:migrate": "npm run --workspace @app/database migrate",
"dev:frontend": "npm run --workspace @app/frontend dev",
"dev:backend": "npm run --workspace @app/backend dev",
"dev:graphql": "npm run --workspace @app/graphql codegen:watch",
"dev:database": "npm run --workspace @app/database watch",
"dev:graphile-worker": "npm run --workspace @app/graphile-worker dev",
"dev:python-worker": "cd @app/python-worker && nodemon",
"dev": "concurrently -k \"npm:dev:*\"",
"build:frontend": "npm run --workspace @app/frontend build",
"build:backend": "npm run --workspace @app/backend build",
"build:graphile-worker": "npm run --workspace @app/graphile-worker build",
"build:python-worker": "cd @app/python-worker && poetry install",
"build": "concurrently \"npm:build:*\"",
"preview:frontend": "npm run --workspace @app/frontend preview",
"preview:backend": "npm run --workspace @app/backend preview",
"preview:graphile-worker": "npm run --workspace @app/graphile-worker preview",
"preview:python-worker": "cd @app/python-worker && poetry run -- procrastinate --app=python_worker.app worker --concurrency=5",
"preview": "concurrently -k \"npm:preview:frontend\" \"npm:preview:backend\" \"npm:preview:python-worker\"",
"lint": "npm run --workspace @app/frontend --workspace @app/backend --workspace @app/graphql lint",
"lint:fix": "npm run --workspace @app/frontend --workspace @app/backend --workspace @app/graphql lint:fix",
"preinstall": "npx npm-force-resolutions",
"postinstall": "patch-package"
},
"workspaces": {
"packages": [
"@app/*"
]
},
"resolutions": {
"tailwindcss": "3.4.0",
"**/tailwindcss": "3.4.0"
},
"dependencies": {
"@fastify/secure-session": "^7.1.0",
"dotenv": "^16.3.1",
"envfile": "^6.22.0",
"inquirer": "^9.2.12",
"npm-force-resolutions": "^0.0.10",
"pg": "^8.11.3",
"sodium-native": "^4.0.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint_d": "^13.1.1",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-graphql": "^3.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"nodemon": "^3.0.2",
"npm-force-resolutions": "^0.0.10",
"patch-package": "^8.0.0",
"pm2": "^5.3.0",
"prettier": "^3.1.0",
"stylelint": "^15.11.0",
"stylelint-prettier": "^4.1.0",
"typescript": "^5.3.0",
"yarn-or-npm": "^3.0.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"vscode": "^1.22.0"
}
}