-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.55 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
{
"name": "webpack-config",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"check:typings": "tsc --emitDeclarationOnly --declarationDir ts-output",
"generate:doc": "typedoc src",
"profile:webpack": "webpack --profile --json=compilation-stats.json --config config/webpack.prod.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test:watch": "jest --watchAll",
"test": "jest --collectCoverage",
"start": "webpack-dev-server --config config/webpack.dev.js",
"build:dev": "webpack --config config/webpack.dev.js",
"build:prod": "webpack --config config/webpack.prod.js"
},
"pre-push": [
"lint",
"check:typings"
],
"author": "",
"license": "ISC",
"dependencies": {
"@date-io/date-fns": "^1.1.0",
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^3.0.2",
"@material-ui/pickers": "^3.3.10",
"@reduxjs/toolkit": "^1.6.1",
"date-fns": "^2.0.0-alpha.27",
"lodash-es": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.1",
"redux-toolkit": "^1.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@welldone-software/why-did-you-render": "^6.2.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^2.2.0",
"pre-push": "^0.1.1",
"sass": "^1.38.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.1.4",
"typedoc": "^0.21.8",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0",
"webpack-manifest-plugin": "^4.0.2",
"webpack-merge": "^5.8.0"
}
}