-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "my-portfolio",
"version": "0.1.0",
"private": true,
"homepage": "https://alreadynyeong.github.io/Portfolio/",
"scripts": {
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "next build && next export",
"predeploy": "npm run build",
"deploy": "touch out/.nojekyll && gh-pages -d out --dotfiles"
},
"dependencies": {
"@types/node": "20.4.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "8.44.0",
"eslint-config-next": "13.4.9",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-storybook": "^0.6.12",
"next": "14.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-responsive": "^9.0.2",
"styled-components": "^6.0.4",
"typescript": "5.1.6"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.27",
"@storybook/addon-interactions": "^7.0.27",
"@storybook/addon-links": "^7.0.27",
"@storybook/blocks": "^7.0.27",
"@storybook/nextjs": "^7.0.27",
"@storybook/react": "^7.0.27",
"@storybook/testing-library": "^0.0.14-next.2",
"gh-pages": "^5.0.0",
"storybook": "^7.0.27"
}
}