-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "turbo-generator",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo run test",
"check": "turbo run check",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"storybook": "turbo run storybook --parallel",
"build-storybook": "turbo run build-storybook --parallel",
"move-storybook": "turbo run move-storybook --filter=docs && turbo run move-storybook --filter=!docs",
"gen": "turbo gen"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@vitejs/plugin-react": "^4.2.1",
"eslint-config-custom": "*",
"jsdom": "^23.2.0",
"prettier": "^3.1.1",
"turbo": "^1.11.3",
"typescript-config": "*",
"vitest": "^1.1.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}