-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.28 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
{
"name": "todo_react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bem-react/core": "3.0.5",
"axios": "0.21.1",
"date-fns": "2.21.1",
"fp-ts": "2.10.4",
"http-proxy-middleware": "1.2.0",
"inversify": "5.0.5",
"lodash": "4.17.21",
"mobx": "6.3.0",
"mobx-react": "7.1.0",
"normalize.css": "8.0.1",
"query-string": "7.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"react-toastify": "7.0.4",
"reflect-metadata": "0.1.13",
"sass": "1.32.12"
},
"devDependencies": {
"@bem-react/eslint-plugin": "1.1.2",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.6",
"@types/jest": "26.0.22",
"@types/lodash": "4.14.168",
"@types/node": "14.14.41",
"@types/query-string": "6.3.0",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-router-dom": "5.1.7",
"@types/react-test-renderer": "17.0.1",
"@types/spotify-api": "0.0.8",
"eslint-config-prettier": "8.2.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-sort-class-members": "1.11.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"react-test-renderer": "17.0.2",
"typescript": "4.2.4"
},
"scripts": {
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start": "react-scripts start",
"lint": "npx eslint --ext .tsx,.ts src/ --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}