-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.78 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
112
113
114
115
116
117
118
119
120
{
"name": "carplates",
"version": "1.0.0",
"description": "Car plates recognizer",
"main": "webpack.config.js",
"keywords": [
"car plate",
"car plates",
"car plate recognizer"
],
"homepage": "https://github.com/Krak86/carplates",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Krak86/carplates/issues"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "Ruslan Korkin",
"email": "[email protected]",
"url": "https://github.com/krak86"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krak86/carplates.git"
},
"engines": {
"node": ">=12.1.0"
},
"dependencies": {
"@material-ui/core": "4.4.0",
"@material-ui/icons": "4.2.1",
"@microsoft/applicationinsights-web": "2.3.1",
"clsx": "1.0.4",
"disqus-react": "^1.0.7",
"dotenv-webpack": "^1.7.0",
"immer": "^5.3.6",
"react": "^16.9.0",
"react-app-polyfill": "^1.0.5",
"react-dom": "^16.9.0",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.0.5",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.0",
"react-share": "^3.0.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@types/dotenv": "^6.1.1",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-facebook-login": "^4.1.1",
"@types/react-redux": "^7.1.2",
"@types/react-router-dom": "^5.1.0",
"@types/react-share": "^3.0.3",
"@types/react-test-renderer": "^16.9.0",
"@types/webpack": "^4.39.1",
"@types/webpack-env": "^1.14.0",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "4.6.0",
"css-loader": "3.2.0",
"cypress": "^4.11.0",
"dotenv": "^8.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"extract-loader": "^3.1.0",
"file-loader": "4.2.0",
"fs": "0.0.1-security",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"imagemin-gifsicle": "6.0.1",
"imagemin-mozjpeg": "8.0.0",
"imagemin-optipng": "7.0.0",
"imagemin-svgo": "7.0.0",
"imagemin-webp-webpack-plugin": "3.2.1",
"img-loader": "3.0.1",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-loader": "^3.0.0",
"pwa-asset-generator": "^1.1.7",
"react-test-renderer": "^16.9.0",
"resolve-url-loader": "3.1.0",
"style-loader": "1.0.0",
"terser-webpack-plugin": "1.4.1",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.2",
"tslint": "^5.20.1",
"tslint-react": "^4.1.0",
"tslint-react-hooks": "^2.2.1",
"tslint-sonarts": "^1.9.0",
"tslint-webpack-plugin": "^2.1.0",
"typescript": "^3.8.0-dev.20200109",
"webpack": "4.28.2",
"webpack-bundle-analyzer": "3.4.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.14",
"webpack-notifier": "1.8.0",
"workbox-webpack-plugin": "^4.3.1"
},
"scripts": {
"run": "webpack-dev-server --https --open --mode development",
"build": "webpack --mode production && npm run pwa",
"deploy": "gh-pages -d docs",
"pwa": "pwa-asset-generator ./docs/img/touch/homescreen.png ./docs/img/touch --icon-only --manifest=./docs/manifest.json --index=./docs/index.html",
"test": "jest",
"lighthouse": "lighthouse https://carsua.pp.ua --output=html --output-path=./__tests__lighthouse/lighthouse.html --save-assets --quiet --chrome-flags=\"--headless\"",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:info": "cypress info"
}
}