-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "remote-cache",
"version": "0.0.0",
"private": true,
"license": "MPL-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"clean:build": "turbo run clean:build",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"doctoc": "doctoc ./README.md packages/remote/README.md packages/remote-nx/README.md packages/remote-rush/README.md examples/nx/README.md examples/rush/README.md CONTRIBUTING.md"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@changesets/cli": "^2.24.4",
"@types/node": "12.20.24",
"@typescript-eslint/parser": "^5.36.1",
"@vercel/style-guide": "4.0.2",
"doctoc": "^2.2.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-turbo": "latest",
"prettier": "latest",
"tsconfig": "workspace:^",
"tsup": "^5.11.11",
"turbo": "latest",
"typescript": "^4.8.0"
},
"engines": {
"pnpm": ">=8.0.0",
"node": ">=18.0.0"
},
"prettier": "@vercel/style-guide/prettier",
"packageManager": "[email protected]"
}