-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "flisek-portfolio-website",
"version": "0.1.0",
"private": true,
"engines": {
"node": " >= 20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"lint:fix": "npm run lint -- --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@types/node": "20.11.14",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"next": "14.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.0.1",
"styled-components": "^6.0.7"
},
"devDependencies": {
"@storybook/addon-a11y": "^7.2.3",
"@storybook/addon-centered": "^5.3.21",
"@storybook/addon-essentials": "^7.2.1",
"@storybook/addon-interactions": "^7.2.1",
"@storybook/addon-links": "^7.2.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-themes": "^7.6.12",
"@storybook/blocks": "^7.2.1",
"@storybook/nextjs": "^7.2.1",
"@storybook/react": "^7.2.1",
"@storybook/test": "^7.6.12",
"@storybook/testing-library": "^0.2.0",
"@types/node": "^20.5.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "8.56.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^8.10.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^3.2.4",
"storybook": "^7.6.12",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "5.2.2",
"typewriter-effect": "^2.21.0",
"webpack": "^5.74.0"
},
"peerDependencies": {
"webpack": "^5.74.0"
}
}