-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "website",
"private": true,
"version": "0.0.0",
"scripts": {
"develop": "yarn workspace frontend run develop",
"start": "yarn workspace frontend run start",
"build": "yarn workspace frontend run build",
"postbuild": "yarn workspace frontend run postbuild",
"deploy:frontend": "yarn workspace frontend run deploy",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint . --ext js,jsx,mdx",
"lint:fix": "yarn lint --fix",
"cypress:open": "yarn workspace e2e run cypress:open",
"cypress:run": "yarn workspace e2e run cypress:run",
"test": "yarn workspace design-system run test",
"postinstall": "husky install",
"plop": "plop"
},
"workspaces": [
"packages/frontend/app",
"packages/frontend/e2e",
"packages/design-system",
"packages/shared"
],
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@svgr/webpack": "^8.0.1",
"cross-env": "7.0.3",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-check-file": "^2.6.1",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"npm-run-all": "4.1.5",
"plop": "^3.1.2",
"prettier": "^3.0.0",
"react-hook-form": "^7.47.0",
"storybook": "^7.2.1",
"wait-on": "7.0.1"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@rollbar/react": "^0.11.2",
"@storybook/addon-essentials": "^7.2.1",
"@storybook/addon-links": "^7.2.1",
"@storybook/addon-mdx-gfm": "^7.2.1",
"@storybook/addons": "^7.2.1",
"@storybook/blocks": "^7.2.1",
"@storybook/nextjs": "^7.2.1",
"@storybook/react": "^7.2.1",
"@storybook/react-webpack5": "^7.2.1",
"@storybook/theming": "^7.2.1",
"js-cookie": "^3.0.5",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"rollbar": "^2.26.2",
"swiper": "^9.1.0",
"usehooks-ts": "^2.9.1"
},
"packageManager": "[email protected]"
}