-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.69 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": "toolkit",
"version": "0.0.0",
"private": true,
"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 --concurrency=20",
"packages": "turbo run develop --filter @codedazur/* --parallel --concurrency=20",
"storybook": "turbo run develop --filter @apps/storybook",
"website": "turbo run develop --filter @apps/website",
"audit": "turbo run audit",
"update": "npx npm-check-updates@latest --format group --deep -u -i",
"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/infrastructure",
"destroy": "turbo run destroy --filter=@apps/infrastructure",
"publish": "npm run build:packages && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "^2.27.7",
"@codedazur/eslint-config": "^0.2.0",
"@codedazur/tsconfig": "^0.1.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.46.0",
"jsdom": "^24.1.0",
"prettier": "latest",
"tsup": "^8.1.0",
"turbo": "^2.0.6",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]"
}