-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.75 KB
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
{
"name": "toolkit",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "npm@11.15.0",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0",
"yarn": "Please use NPM!",
"pnpm": "Please use NPM!"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"develop": "turbo run develop --parallel",
"develop:packages": "turbo run develop --filter @codedazur/* --parallel",
"audit": "turbo run audit",
"update": "npx npm-check-updates@latest --interactive --format group --deep --upgrade --install never && npm install && npm audit fix",
"lint": "turbo run lint",
"types": "turbo run types",
"test": "turbo run test",
"check": "turbo run audit lint types test",
"check:apps": "npm run check -- --filter=@apps/*",
"check:packages": "npm run check -- --filter=@codedazur/*",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build": "turbo run build",
"build:apps": "turbo run build --filter=@apps/*",
"build:packages": "turbo run build --filter=@codedazur/*",
"deploy": "turbo run deploy --filter=@apps/cdk",
"destroy": "turbo run destroy --filter=@apps/cdk",
"publish": "npm run build:packages && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "^2.31.0",
"@codedazur/eslint-config": "*",
"@codedazur/tsconfig": "*",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^9.39.2",
"jsdom": "^29.1.1",
"prettier": "latest",
"tsup": "^8.5.1",
"turbo": "^2.10.12",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
},
"overrides": {
"brace-expansion": "^1.1.18 || ^2.1.4 || ^5.0.9",
"elliptic": "^6.6.1",
"fast-uri": "^3.1.7",
"form-data": "^4.0.6"
}
}