-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
68
{
"name": "sharebook-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev-docker-linux": "docker-compose -f docker-compose.dev.linux.yml",
"dev-docker-windows": "docker-compose -f docker-compose.dev.windows.yml",
"build": "next build",
"build-start": "next build && next start",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest --verbose",
"validate-pr": "jest && next build"
},
"dependencies": {
"@emotion/cache": "^11.9.3",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.2",
"@mui/lab": "^5.0.0-alpha.89",
"@mui/material": "^5.8.0",
"axios": "^0.27.2",
"next": "12.3.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-google-recaptcha": "^2.1.0",
"react-text-mask": "^5.4.3",
"usehooks-ts": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@storybook/addon-actions": "^6.5.3",
"@storybook/addon-essentials": "^6.5.3",
"@storybook/addon-interactions": "^6.5.3",
"@storybook/addon-links": "^6.5.3",
"@storybook/builder-webpack5": "^6.5.3",
"@storybook/manager-webpack5": "^6.5.3",
"@storybook/react": "^6.5.3",
"@storybook/testing-library": "^0.0.11",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^27.5.1",
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"@types/react-google-recaptcha": "^2.1.5",
"@types/react-text-mask": "^5.4.11",
"@types/testing-library__jest-dom": "^5.14.4",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-plugin-storybook": "^0.5.12",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"sass": "^1.52.1",
"storybook-addon-material-ui": "^0.9.0-alpha.24",
"ts-mixer": "^6.0.1",
"typescript": "4.6.4"
}
}