-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.43 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
{
"name": "dubdubchat",
"version": "1.0.0",
"main": "src/server/index.js",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node src/server/index.js",
"dev": "NODE_ENV=development nodemon src/server/index.js --exact babel-node",
"build": "NODE_ENV=production webpack-cli --config webpack.config.js ",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"pretty": "prettier --check 'src/**/*.js'",
"pretty:fix": "prettier --check 'src/**/*.js' --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.7.4",
"asset-require-hook": "^1.2.0",
"axios": "^0.21.2",
"babel-polyfill": "^6.26.0",
"compression-webpack-plugin": "^3.0.0",
"eslint-loader": "^3.0.2",
"express": "^4.17.1",
"helmet": "^3.21.2",
"history": "^4.10.1",
"intersection-observer": "^0.7.0",
"memory-cache": "^0.2.0",
"morgan": "^1.9.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-icons": "^3.8.0",
"react-infinite-scroller": "^1.2.4",
"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.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.1",
"terser-webpack-plugin": "^2.2.1",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-pwa-manifest": "^4.1.1",
"winston": "^3.2.1",
"workbox-webpack-plugin": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-regenerator": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/runtime": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.19.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}