-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 3.21 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
{
"name": "turbo",
"repository": "https://github.com/windycitydevs/turbo.git",
"author": {
"email": "[email protected]",
"name": "Andrew Ross",
"url": "https://github.com/DopamineDriven"
},
"license": "MIT",
"type": "module",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"changeset": "changeset",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo run dev --parallel --continue",
"echo": "node ./.env -r dotenv/config",
"flatten": "awk -v ORS='\\n' '1' flatten.js",
"format": "prettier --write \"**/*.{ts,tsx,mts,cts,js,jsx,cjs,mjs,md,mdx}\" --ignore-unknown",
"lint": "turbo run lint",
"postinstall": "npx patch-package",
"prepare": "husky install && yarn format",
"python": "source ../../frameworkenv/bin/activate",
"test": "echo \"Hello from GitHubCI\"",
"build:backfill": "turbo run build --filter=\\@windycitydevs/backfill",
"build:express": "turbo run build --filter=\\@windycitydevs/express",
"build:hillsidetoharbor": "turbo run build --filter=\\@windycitydevs/hillsidetoharbor",
"build:ui": "turbo run build --filter=\\@windycitydevs/ui",
"clean:house": "cd apps/express && rm -rf node_modules .turbo && cd ../hillsidetoharbor && rm -rf node_modules .turbo .next && cd ../../packages/ui && rm -rf node_modules .turbo dist .swc && cd ../jest-presets && rm -rf node_modules && cd ../eslint-config-custom-server && rm -rf node_modules && cd ../eslint-config-custom && rm -rf node_modules && cd ../.. && rm -rf node_modules yarn.lock && yarn install",
"clean:exe": "yarn clean:house && yarn clean:install",
"clean:install": "yarn install && yarn build:ui && yarn build:sanity-indexer && yarn build:backfill",
"condense:private": "awk -v ORS='\\n' '1' private.pem",
"condense:public": "awk -v ORS='\\n' '1' public.pem",
"generate:authsecret": "openssl rand -base64 64",
"generate:secret": "openssl rand -hex 64",
"generate:private": "openssl genrsa -out private.pem 2048",
"generate:public": "openssl rsa -in private.pem -pubout -out public.pem",
"npm:registry": "npm set registry https://registry.npmjs.org",
"publish:ui": "yarn --cwd packages/ui publish",
"run:express": "turbo run dev --filter=\\@windycitydevs/express",
"run:hillsidetoharbor": "turbo run dev --filter=\\@windycitydevs/hillsidetoharbor",
"sync:time": "sudo ntpdate time.windows.com",
"test:express": "yarn --cwd apps/express test",
"turbo:login": "turbo login",
"version:packages": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"dotenv-expand": "^10.0.0",
"eslint": "^8.47.0",
"eslint-config-custom": "*",
"eslint-config-turbo": "latest",
"husky": "^8.0.3",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.0.1",
"prettier-plugin-groq": "^0.2.5",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.2",
"tsx": "^3.12.7",
"turbo": "latest",
"typescript": "^5.1.6",
"vercel": "^31.3.1"
},
"engines": {
"node": ">=18.16.0",
"npm": ">=9.5.0"
}
}