-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.59 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
{
"name": "tolumide",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --init",
"start": "node server.js",
"dev": "webpack serve",
"build": "rm -rf ./dist && webpack --mode=production",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.26.1",
"css-loader": "^6.7.1",
"dayjs": "1.10.8",
"dotenv": "16.0.0",
"dotenv-webpack": "7.1.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"jsonwebtoken": "^8.5.1",
"node-sass": "7.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^7.2.6",
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2",
"redux": "4.1.2",
"redux-thunk": "^2.4.1",
"sass-loader": "12.6.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.1.1"
},
"devDependencies": {
"@redux-devtools/extension": "^3.2.2",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.0.0",
"@types/dotenv-webpack": "^1.8.0",
"@types/jest": "^26.0.10",
"@types/jsonwebtoken": "^8.5.0",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@types/react-redux": "^7.1.9",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^0.10.1",
"prettier": "^2.6.1",
"prettier-eslint": "^13.0.0",
"pretty-quick": "^2.0.1",
"redux-devtools-extension": "^2.13.8",
"source-map-loader": "^1.0.1",
"ts-jest": "^26.5.6",
"ts-loader": "^9.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"husky": {
"hooks": {
"pre-push": "pretty-quick --staged"
}
}
}