-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.65 KB
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
{
"name": "sneaker",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.2.6",
"rc-dropdown": "^3.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-draggable": "^4.4.3",
"react-hook-form": "^6.14.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-slick": "^0.28.0",
"react-transition-group": "^4.4.1",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^12.6.2",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-slick": "^0.23.4",
"@types/react-transition-group": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"msw": "^0.25.0",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"typescript": "^4.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"lint:types": "tsc --project ./tsconfig.json --noEmit",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:types && lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"yarn lint:fix"
],
"src/**/*.css": [
"prettier --write"
],
"src/**/*.test.{js,jsx,ts,tsx}": [
"yarn test --watchAll=false"
]
},
"proxy": "http://localhost:4455",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}