-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.14 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
{
"name": "react-youtube-upload",
"version": "2.0.0",
"license": "ISC",
"author": "Paul Zmuda",
"description": "An example showing a React application uploading/managing videos using the YouTube API.",
"scripts": {
"start:dev": "node server dev",
"clean": "rm -rf node_modules && rm -f package-lock.json",
"reinstall": "npm run clean && npm install"
},
"main": "index.tsx",
"dependencies": {
"@material-ui/core": "^4.4.3",
"@material-ui/icons": "^4.4.3",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"clsx": "^1.0.4",
"dotenv": "^8.1.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.17.1",
"firebase": "^6.6.2",
"history": "^4.10.1",
"material-ui-pickers": "^2.2.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-dropzone": "^8.1.0",
"react-leaflet": "^2.4.0",
"react-popper": "^1.3.4",
"react-redux": "^7.2.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-spring": "^8.0.27",
"react-transition-group": "^4.3.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"superagent": "^5.1.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.9",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.0",
"@hot-loader/react-dom": "^16.9.0",
"@types/classnames": "^2.2.10",
"@types/node-sass": "^4.11.0",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/react-motion": "0.0.29",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/reactstrap": "^8.4.2",
"@types/styled-components": "^5.0.1",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"assets-webpack-plugin": "3.5.1",
"autoprefixer": "6.7.7",
"babel-eslint": "7.2.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-google": "^0.14.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-css-modules": "^2.7.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"file-loader": "^4.2.0",
"node-sass": "^4.12.0",
"react-deep-force-update": "^2.1.3",
"react-hot-loader": "^4.12.13",
"react-svg-loader": "^3.0.3",
"redbox-react": "^1.6.0",
"redux-devtools-extension": "^2.13.8",
"sass-loader": "^8.0.0",
"source-map-loader": "^0.2.4",
"stylelint": "7.10.1",
"stylelint-config-standard": "16.0.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"typings-for-css-modules-loader": "^1.7.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.1.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.8.1",
"webpack-hot-middleware": "^2.25.0"
}
}