-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.63 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
53
54
55
{
"name": "gcb-loginpage",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "yarn test --watch",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"next": "^12.1.6",
"react": "^18.2.0",
"react-dom": "^18.3.0-next-cf665c4b7-20220620",
"react-icons": "^4.4.0",
"react-toastify": "^9.0.5",
"storybook-addon-next": "^1.6.7",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.3",
"jsdom-global": "^3.0.2",
"ts-jest": "^28.0.5",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/enzyme": "^3.10.12",
"@types/jest": "^28.1.5",
"@types/styled-components": "^5.1.25",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"eslint-plugin-storybook": "^0.5.13",
"react-docgen-typescript-plugin": "^1.0.1",
"typescript": "^4.7.4"
},
"resolutions": {
"styled-components": "^5"
}
}