-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.17 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
{
"name": "random-photo",
"version": "1.0.0",
"description": "Random Photo Daily.",
"main": "index.js",
"author": "lddtoan",
"license": "MIT",
"private": true,
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@reduxjs/toolkit": "^1.9.3",
"@testing-library/react": "^14.0.0",
"@types/eslint": "^8.21.2",
"@types/html-webpack-plugin": "^3.2.6",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.3",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-redux": "^7.1.25",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@types/webpack-dev-server": "^4.7.2",
"axios": "^1.3.4",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.0",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"prettier": "^2.8.4",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router": "^6.9.0",
"react-router-dom": "^6.9.0",
"redux-saga": "^1.2.3",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"webpack": "^5.76.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint-plugin-react": "^7.32.2"
},
"scripts": {
"postinstall": "husky install",
"dev": "yarn webpack serve --mode development",
"build": "yarn webpack --mode production",
"test": "yarn jest"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
}
}