-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.17 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
{
"name": "monorepo",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/brianjenkins94/monorepo.git"
},
"author": "Brian Jenkins",
"bugs": {
"url": "https://github.com/brianjenkins94/monorepo/issues"
},
"homepage": "https://github.com/brianjenkins94/monorepo#readme",
"type": "module",
"bin": "scripts/npx.mjs",
"scripts": {
"dev": "turbo run dev --parallel",
"purge": "find . \\( -name \"node_modules\" -or -name \".next\" -or -name \".turbo\" -or -name \"dist\" -or -name \"out\" -or -name \"package-lock.json\" \\) -prune -exec rm -rf \"{}\" \\;",
"reexport": "node scripts/reexport.mjs",
"test": "rm -rf \"$(npm config get cache)/_npx/*\" && npx brianjenkins94/kerplow ; rm -rf \"$(npm config get cache)/_npx/*\"",
"update": "node scripts/update.mjs"
},
"devDependencies": {
"@tsconfig/node-lts": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"tsup": "latest",
"turbo": "latest",
"typescript": "latest"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"packageManager": "[email protected]"
}