-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.73 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
{
"name": "tvr",
"version": "0.1.0",
"license": "AGPLv3",
"private": true,
"dependencies": {
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/runtime": "^7.6.3",
"@material-ui/core": "^4.4.1",
"@material-ui/icons": "^4.4.3",
"@material-ui/lab": "^4.0.0-alpha.29",
"@types/jest": "24.0.18",
"@types/node": "12.7.5",
"@types/react": "^16.9.2",
"@types/react-dom": "16.9.0",
"@types/react-redux": "^7.1.2",
"@types/react-router-dom": "^4.3.5",
"@types/recompose": "^0.30.7",
"@types/redux-logger": "^3.0.7",
"connected-react-router": "^6.5.2",
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"loglevel": "^1.6.4",
"pretty": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-html-parser": "^2.0.2",
"react-player": "^1.14.1",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.1",
"react-select": "^3.0.8",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"remote-redux-devtools": "^0.5.16",
"reselect": "^4.0.0",
"screenfull": "^5.0.0",
"snudown-js": "^3.1.8"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"fix": "eslint --fix --ignore-pattern 'src/**/__snapshots__' 'src/**/*'",
"deploy": "git subtree split --prefix build -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"customize-cra": "^0.8.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^22.20.0",
"eslint-plugin-prettier": "^3.1.1",
"fast-check": "^1.17.0",
"jest-fetch-mock": "^2.1.2",
"prettier": "^1.18.2",
"react-app-rewired": "^2.1.4",
"redux-mock-store": "^1.5.3"
}
}