-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 2.89 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "til-selleo",
"version": "0.1.0",
"private": true,
"homepage": "/",
"dependencies": {
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "12.1.1",
"@testing-library/user-event": "14.0.4",
"classnames": "2.3.1",
"date-fns": "2.28.0",
"history": "5.3.0",
"lodash": "4.17.21",
"node-sass": "7.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-highlight-words": "0.17.0",
"react-icons": "3.11.0",
"react-markdown": "8.0.2",
"react-mde": "11.5.0",
"react-modal": "3.14.4",
"react-onclickoutside": "6.12.1",
"react-redux": "7.2.8",
"react-router-dom": "5.3.0",
"react-scripts": "5.0.0",
"react-select": "5.2.2",
"react-syntax-highlighter": "15.5.0",
"react-tippy": "1.4.0",
"react-toastify": "8.2.0",
"react-transition-group": "4.4.2",
"redux": "4.1.2",
"redux-thunk": "2.4.1",
"reselect": "4.1.5",
"source-map-explorer": "2.5.2",
"styled-components": "5.3.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && cp _redirects build/_redirects",
"test": "react-scripts test",
"test:coverage": "react-scripts test --coverage --watchAll=false ",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"lint": "eslint --ext .js --ext .jsx .",
"lint-fix": "eslint . --ext .js,.jsx --fix",
"prepare": "cd .. && husky install frontend/.husky"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:4000",
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/eslint-parser": "7.17.0",
"@testing-library/react-hooks": "8.0.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"husky": "7.0.4",
"jest-date-mock": "1.0.8",
"json-server": "0.17.0",
"lint-staged": "12.3.7",
"msw": "0.39.2",
"nock": "13.2.4",
"prettier": "2.6.2",
"redux-mock-store": "1.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "react-scripts test --watchAll=false"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --config .prettierrc --write",
"eslint --fix"
]
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx,ts,tsx}",
"!**/*.d.ts",
"!**/node_modules/**",
"!*.config.js",
"!.eslintrc.js",
"!**coverage/**",
"!**lib/**",
"!**/styles/**",
"!**/tests/**",
"!**/store/*.js",
"!**/nonAuthenticated/**",
"!**/src/*.js"
]
}
}