-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.41 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
{
"name": "ytk",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"firebase": "^8.9.1",
"history": "^5.0.1",
"husky": "^7.0.1",
"keymirror": "^0.1.1",
"lint-staged": "^7.2.0",
"node-sass-chokidar": "^1.5.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"promise-timeout": "^1.3.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^17.0.2",
"react-idle-timer": "^5.1.1",
"react-redux": "^7.2.4",
"react-router-dom": "^6.0.0-beta.1",
"react-router-scroll-4": "^1.0.0-beta.1",
"react-scripts": "4.0.3",
"react-swipeable-views": "^0.14.0",
"react-youtube": "^7.6.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"screenfull": "^3.3.2",
"voca": "^1.4.0",
"web-vitals": "^1.0.1",
"youtube-api-v3-search": "^1.0.2"
},
"lint-staged": {
"src/**/*.{js,jsx,json,scss,css}": [
"prettier --config .prettierrc --single-quote --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"test-coverage": "react-scripts test --env=jsdom --coverage",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"coveralls": "^3.0.2",
"enzyme": "^3.11.0",
"firebase-mock": "^2.2.4",
"jest-enzyme": "^7.1.2",
"jest-mock-random": "^1.1.1",
"mock-local-storage": "^1.1.17",
"react-router-enzyme-context": "^1.2.0",
"redux-saga-test-plan": "^3.7.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}