-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.07 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
{
"private": true,
"name": "@trail-status-app/workspace",
"repository": "git@github.com:jschr/hydrocut-trail-status.git",
"author": "Jordan Schroter <github@jschr.io>",
"workspaces": [
"api",
"utilities",
"embed",
"frontend",
"infrastructure"
],
"scripts": {
"start": "dotenv -e .env -e .env.local -- wsrun --exclude-missing dev",
"watch": "wsrun --exclude-missing watch",
"lint": "wsrun --exclude-missing lint",
"package": "tasks/package.sh",
"build": "tasks/build-ci.sh",
"build:dev": "dotenv -e .env -e .env.dev -- wsrun --exclude-missing --stages build",
"deploy:dev": "dotenv -e .env -e .env.dev yarn infrastructure deploy",
"build:production": "dotenv -e .env -e .env.production -- wsrun --exclude-missing --stages build",
"deploy:production": "dotenv -e .env -e .env.production yarn infrastructure deploy",
"seed:dev": "dotenv -e .env -e .env.dev yarn api seed",
"seed:production": "dotenv -e .env -e .env.production yarn api seed",
"create-jwt:dev": "dotenv -e .env -e .env.dev ts-node tasks/create-jwt.ts",
"copy-tables:dev": "dotenv -e .env -e .env.dev ts-node tasks/copy-tables.ts",
"copy-tables:production": "dotenv -e .env -e .env.production ts-node tasks/copy-tables.ts",
"--- workspaces ---": "",
"api": "yarn workspace @trail-status-app/api",
"embed": "yarn workspace @trail-status-app/embed",
"frontend": "yarn workspace @trail-status-app/frontend",
"infrastructure": "yarn workspace @trail-status-app/infrastructure",
"utilities": "yarn workspace @trail-status-app/utilities"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"dotenv-cli": "^3.1.0",
"dotenv-expand": "^5.1.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^3.4.2",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^5.3.3",
"wsrun": "^5.2.0"
},
"dependencies": {
"zod": "^3.24.1"
}
}