forked from uchiru/frontend-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.77 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "cat-pinterest",
"homepage": "https://KirSivogr.github.io/cat-pinterest",
"version": "1.0.0",
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve --mode development ",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint-fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"npm run lint-fix",
"prettier --write"
]
},
"dependencies": {
"@reduxjs/toolkit": "2.5.0",
"@types/react-redux": "7.1.34",
"axios": "^1.6.8",
"dotenv": "16.0.3",
"dotenv-webpack": "^8.0.1",
"formik": "^2.4.5",
"gh-pages": "^5.0.0",
"kill-port": "^2.0.1",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"mrm": "2",
"process": "^0.11.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-masonry-css": "^1.0.16",
"react-redux": "^8.0.5",
"react-router-dom": "6.28.1",
"serve": "14.2.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/preset-env": "7.21.5",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.5",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.0",
"@types/node": "18.16.3",
"@types/react": "18.2.4",
"@types/react-dom": "18.2.3",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"babel-loader": "9.1.2",
"css-loader": "^7.1.2",
"cypress": "^12.13.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^2.8.8",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "4.0.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "4.13.3",
"whatwg-fetch": "^3.6.2"
}
}