-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.72 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.72 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-redux-rxjs-typescript",
"version": "1.0.0",
"description": "React, Redux, TypeScript, RxJs, Docker, Jest",
"homepage": "https://github.com/krlls/React-Redux-RxJs-TypeScript.git#readme",
"url": "https://github.com/krlls/React-Redux-RxJs-TypeScript.git",
"main": "index.ts",
"author": "Ksmi",
"license": "AAL",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@svgr/webpack": "^8.0.1",
"@types/classnames": "^2.3.0",
"@types/jest": "^29.5.2",
"@types/markdown-to-jsx": "^7.0.1",
"@types/node-sass": "^4.11.3",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"@types/react-redux": "^7.1.25",
"@types/redux-mock-store": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"eslint-config-prettier": "^8.8.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"mini-css-extract-plugin": "^2.7.6",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"typescript-plugin-css-modules": "^5.0.1",
"url-loader": "^4.1.1",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dashboard": "^3.3.8",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0",
"eslint": "^8.42.0",
"eslint-plugin-import": "^2.27.5"
},
"dependencies": {
"axios": "^1.4.0",
"axios-observable": "^2.0.0",
"classnames": "^2.3.2",
"husky": "^8.0.3",
"markdown-to-jsx": "^7.2.1",
"node-sass": "^9.0.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.7",
"redux": "^4.2.1",
"redux-observable": "^2.0.0",
"rxjs": "^7.8.1"
},
"scripts": {
"prepare": "husky install",
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"build:docker": "docker build -t $npm_package_name .",
"run:docker": "docker run -p 80:80 $npm_package_name",
"test": "jest",
"lint": "eslint src",
"prettier": "prettier --write src",
"lint-fix": "eslint --fix src",
"fix": "yarn prettier && yarn lint-fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn fix"
]
}
}