-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.19 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.19 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
68
{
"name": "react-libs",
"private": true,
"type": "module",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"pnp:doctor": "yarn dlx @yarnpkg/doctor",
"lint": "yarn eslint ./src --ext .tsx,.ts,.jsx,.js --ignore-path .gitignore",
"lint:fix": "yarn eslint ./src --fix --ext .tsx,.ts,.jsx,.js --ignore-path .gitignore",
"stylelint:fix": "stylelint --fix ./src/**/*.tsx"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mermaid-js/mermaid-cli": "^10.2.4",
"@reduxjs/toolkit": "^1.8.5",
"axios": "^0.27.2",
"mermaid": "^10.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"redux-saga": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@emotion/babel-preset-css-prop": "^11.10.0",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/node": "^18.7.23",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-redux": "^7.1.24",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^2.0.1",
"autoprefixer": "^10.4.8",
"eslint": "^8.23.0",
"eslint-config-airbnb": "latest",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"postcss-syntax": "^0.36.2",
"prettier": "^3.0.0",
"stylelint": "^14.11.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "^5.1.6",
"vite": "^3.0.7"
},
"lint-staged": {
"*.js": "yarn lint:fix --ignore-path .gitignore",
"*.jsx": "yarn lint:fix --ignore-path .gitignore",
"*.ts": "yarn lint:fix --ignore-path .gitignore",
"*.tsx": "yarn lint:fix --ignore-path .gitignore"
},
"packageManager": "yarn@3.6.1"
}