-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.26 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
{
"name": "react-image-search",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"fix:eslint": "tsc --noEmit && eslint src/**/*.ts{,x} --cache --fix",
"fix:format": "prettier --write \"src/**/*.{ts,tsx,json,css,less,md}\"",
"fix:styles": "stylelint --fix \"src/**/*.scss\"",
"lint": "run-p fix:*",
"prepare": "husky install",
"start": "react-scripts start",
"test": "react-scripts test",
"test:coverage": "npm test --coverage --watchAll=false",
"test:update": "npm test --updateSnapshot",
"validate": "run-p test:coverage lint"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"axios": "^0.25.0",
"node-sass": "^7.0.1",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intersection-observer-hook": "^2.0.3",
"react-redux": "^7.2.6",
"react-scripts": "5.0.0",
"redux-saga": "^1.1.3",
"use-debounce": "^7.0.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.21",
"@types/ramda": "^0.27.64",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/parser": "^5.4.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-perf": "^3.3.1",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-unicorn": "^40.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"stylelint": "^14.3.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "^4.5.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}