-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
51 lines (51 loc) · 1.9 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
{
"name": "neshca",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*",
"docs/cache-handler-docs",
"internal/*"
],
"scripts": {
"build:docs": "turbo run build:docs --filter=@repo/cache-handler-docs",
"build:packages": "turbo run build --filter=!./apps/* --filter=!./docs/*",
"build:test-app": "turbo run build --filter=@repo/cache-testing",
"changeset": "changeset",
"ci:publish": "changeset publish",
"ci:version": "changeset version && npm run codestyle:fix",
"clean": "rimraf -g **/{node_modules,dist,.next,test-results,playwright-report}",
"codestyle:check": "biome check . && npm run eslint:check && npm run prettier:check",
"codestyle:fix": "biome check --write . && npm run eslint:fix && npm run prettier:fix",
"dev:docs": "turbo run dev:docs --filter=@repo/cache-handler-docs",
"dev:packages": "turbo run dev --filter=!@neshca/server",
"e2e": "turbo run e2e",
"eslint:check": "turbo run eslint:check",
"eslint:fix": "turbo run eslint:fix",
"prettier:check": "prettier --check **/*.{md,mdx,yml,json}",
"prettier:fix": "prettier --write **/*.{md,mdx,yml,json}",
"start:backend": "turbo run start --filter=@repo/backend",
"start:test-app": "turbo run start --filter=@repo/cache-testing",
"test": "turbo run test"
},
"dependencies": {
"@changesets/cli": "2.27.10"
},
"devDependencies": {
"@actions/core": "1.11.1",
"@biomejs/biome": "1.9.4",
"@repo/prettier-config": "*",
"@repo/typescript-config": "*",
"glob": "11.0.0",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"turbo": "2.3.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.9.0",
"npm": ">=10.1.0"
}
}