-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "netvideo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack-cli --config webpack.config.js",
"start:dev": "nodemon src/server/index",
"start": "node src/server/index",
"lint": "eslint src/frontend/ --ext .js --ext .jsx --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/polyfill": "^7.12.1",
"@babel/register": "^7.8.3",
"@hapi/boom": "^9.1.2",
"asset-require-hook": "^1.2.0",
"axios": "^0.21.1",
"babel-eslint": "^10.0.3",
"classnames": "^2.2.6",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^3.21.2",
"history": "^4.10.1",
"ignore-styles": "^5.0.1",
"md5": "^2.2.1",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.19",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"webpack": "^4.41.5",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"compression-webpack-plugin": "^3.1.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"file-loader": "^4.3.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"sass-loader": "^7.3.1",
"terser-webpack-plugin": "^2.3.3",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}