-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.56 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
{
"name": "projeto",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "Gabriel dos Santos Oliveira <gabrielsantosoliveira951@gmail.com>",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier -w .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy-storybook": "storybook-to-ghpages"
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.1",
"clsx": "^1.2.1",
"next": "^13.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.6",
"react-icons": "^4.8.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.0-rc.4",
"@storybook/addon-interactions": "^7.0.0-rc.4",
"@storybook/addon-links": "^7.0.0-rc.4",
"@storybook/addon-styling": "^0.3.1",
"@storybook/blocks": "^7.0.0-rc.4",
"@storybook/nextjs": "^7.0.0-rc.4",
"@storybook/react": "^7.0.0-rc.4",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/testing-library": "^0.0.14-next.1",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"autoprefixer": "^10.4.14",
"eslint": "8.11.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-storybook": "^0.6.11",
"postcss": "^8.4.21",
"postcss-loader": "^7.1.0",
"prettier": "^2.8.4",
"storybook": "^7.0.0-rc.4",
"storybook-addon-next": "^1.7.3",
"tailwindcss": "^3.2.7",
"typescript": "^5.0.2"
}
}