-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.47 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.47 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "frontend-monorepo",
"packageManager": "yarn@4.1.1",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"dev": "yarn workspace waggle-service dev",
"dev:waggle-service": "yarn workspace waggle-service dev",
"build:design-system": "yarn workspace waggle-design-system build",
"publish:design-system": "yarn workspace waggle-design-system build && yarn workspace waggle-design-system npm publish",
"build:waggle-service": "yarn workspace waggle-service build",
"preview:waggle-service": "yarn workspace waggle-service preview",
"lint": "eslint ./packages/*/src/**/*.{ts,tsx,js,jsx}",
"lint:fix": "eslint --fix ./packages/*/src/**/*.{ts,tsx,js,jsx}",
"postinstall": "husky install"
},
"dependencies": {
"@babel/runtime": "7.14.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-pattern": "^4",
"vite": "^5.2.8"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.23.8",
"@cypress/webpack-preprocessor": "^6.0.1",
"@sentry/react": "7.93.0",
"@testing-library/cypress": "^10.0.1",
"@testing-library/dom": "^9.3.4",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/eslint": "^8.56.2",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@yarnpkg/cli": "^4.0.2",
"@yarnpkg/core": "^4.0.2",
"@yarnpkg/plugin-essentials": "^4.0.2",
"@yarnpkg/plugin-git": "^3.0.0",
"babel-loader": "^9.1.3",
"cypress": "^12.17.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "4.9.5",
"webpack": "^5.88.1"
},
"resolutions": {
"@storybook/core-common/webpack": "^5",
"@storybook/core-server/webpack": "^5",
"@storybook/react/webpack": "^5"
}
}