-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.91 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
{
"name": "@dcs/root",
"version": "0.0.0",
"author": {
"email": "[email protected]",
"name": "Andrew Ross",
"url": "https://github.com/DopamineDriven"
},
"license": "MIT",
"private": true,
"packageManager": "[email protected]+sha512.5ac37545851c55ec58521b6c285db6f848f93ca70889beb4145f5b40fe234e4ea4faee4dad12ac5c139e494374c65d9c3a6ec9a25954378fa286a250e68d2f20",
"scripts": {
"clean": "git clean -xdf node_modules",
"dev": "turbo dev --parallel --continue",
"flatten": "awk -v ORS='\\n' '1' flatten.js",
"format": "prettier --write \"**/*.{ts,tsx,cts,mts,js,jsx,mjs,cjs,json,yaml,yml,css,html,md,mdx}\" --ignore-unknown --cache",
"lint": "turbo lint",
"prepare": "husky",
"test": "echo \"Hello from GitHubCI\"",
"typecheck": "turbo typecheck",
"build:web": "turbo build --filter=@dcs/web",
"clean:house": "cd apps/web && git clean -xdf node_modules .next .turbo && cd ../../tooling/eslint && git clean -xdf node_modules .turbo && cd ../prettier && git clean -xdf node_modules .turbo && cd ../typescript && git clean -xdf node_modules .turbo && cd ../jest-presets && git clean -xdf node_modules .turbo && cd ../.. && git clean -xdf node_modules pnpm-lock.yaml && pnpm latest:pnpm && pnpm build:web",
"condense:privatekey": "awk -v ORS='\\n' '1' private.pem",
"condense:publickey": "awk -v ORS='\\n' '1' public.pem",
"generate:privatekey": "openssl genrsa -out private.pem 2048",
"generate:publickey": "openssl rsa -in private.pem -pubout -out public.pem",
"npm:registry": "npm set registry https://registry.npmjs.org",
"nvm:18": "nvm use 18.18.2",
"nvm:latest": "nvm use node",
"nvm:list:downloadable": "nvm ls-remote",
"nvm:list:installed": "nvm ls",
"nvm:lts": "nvm use --lts",
"nvm:install:node:lts": "nvm install --lts",
"nvm:install:node:latest": "nvm install node --latest-npm",
"nvm:install:npm:latest": "nvm install-latest-npm",
"run:web": "turbo dev --filter=@dcs/web",
"sync:time": "sudo ntpdate time.windows.com",
"turbo:login": "turbo login",
"turbo:logout": "turbo logout",
"turbo:link": "turbo link",
"latest:pnpm": "corepack use pnpm@latest",
"update:pnpm": "curl -fsSL https://get.pnpm.io/install.sh | sh -",
"generate:base64:secret": "openssl rand -base64 64",
"generate:hex:secret": "openssl rand -hex 64"
},
"devDependencies": {
"@dcs/eslint-config": "workspace:*",
"@dcs/prettier-config": "workspace:*",
"@dcs/tsconfig": "workspace:*",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.9.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"dotenv-expand": "^11.0.7",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"tsx": "latest",
"turbo": "latest",
"typescript": "latest",
"vercel": "latest"
},
"prettier": "@dcs/prettier-config",
"engines": {
"node": ">=20",
"npm": ">=10",
"pnpm": ">=8"
}
}