-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "@dawangraoming/nextjs-monorepo-template",
"version": "1.0.0",
"description": "A monorepo includes Turbo, PNPM, Next.js, TypeScript, Jest, ESLint, Storybook.",
"license": "MIT",
"author": "dawangraoming",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev --parallel --no-cache",
"build": "turbo run build",
"build-storybook": "build-storybook -s public",
"lint": "turbo run lint",
"storybook": "STORYBOOK=1 start-storybook -p 6006 -s public",
"test": "turbo run test",
"tsc": "turbo run tsc",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"husky": "^8.0.3",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"turbo": "^1.7.2"
}
}