-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.14 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "medical-information-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write src/**/*.{ts,tsx,scss}",
"prettier": "prettier --check src/**/*.{ts,tsx,scss}",
"lint": "eslint src/",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"commit": "cz",
"predeploy": "npm run build-storybook",
"deploy": "gh-pages -d storybook-static"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.37",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"classnames": "^2.3.2",
"dompurify": "^3.0.5",
"formik": "^2.4.3",
"gh-pages": "^5.0.0",
"html-react-parser": "^4.2.0",
"marked": "^6.0.0",
"nanoid": "^4.0.2",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.14.0",
"react-scripts": "5.0.1",
"react-transition-group": "^4.4.5",
"storybook-addon-react-router-v6": "^1.0.2",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-interactions": "^7.0.24",
"@storybook/addon-links": "^7.0.24",
"@storybook/blocks": "^7.0.24",
"@storybook/preset-create-react-app": "^7.0.24",
"@storybook/react": "^7.0.24",
"@storybook/react-webpack5": "^7.0.24",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/dompurify": "^3.0.2",
"@types/react-transition-group": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-plugin-named-exports-order": "^0.0.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"sass": "^1.63.6",
"storybook": "^7.0.24",
"webpack": "^5.88.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npm run lint",
"*.{js,jsx,ts,tsx,scss,html,json}": "npm run format"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}