-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.24 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.24 KB
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
{
"name": "react-redux-isomorphic-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack --config webpack/dev/webpack.server.js && npm-run-all --print-label --parallel dev:*",
"dev:build-server": "webpack --config webpack/dev/webpack.server.js --watch",
"dev:build-client": "webpack --config webpack/dev/webpack.client.js --watch",
"dev:server": "nodemon --watch server-build --exec \"node server-build/server.js\"",
"build": "npm-run-all --print-label --parallel prod:build-server prod:build-client",
"prod:build-server": "webpack --config webpack/production/webpack.server.js",
"prod:build-client": "webpack --config webpack/production/webpack.client.js",
"start": "NODE_ENV=production node server-build/server.js",
"lint": "./node_modules/eslint-watch/bin/esw --",
"lint:watch": "npm run lint --watch",
"docker": "./tools/docker.sh",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@loadable/babel-plugin": "5.12.0",
"@loadable/webpack-plugin": "5.12.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"body-parser": "^1.19.0",
"brotli-webpack-plugin": "^1.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"dotenv-webpack": "^1.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.20.0",
"eslint-watch": "^6.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.0.0",
"highcharts": "^8.1.0",
"highcharts-react-official": "^3.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.2.0",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"node-fetch": "^2.6.0",
"node-sass": "4.13.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.1",
"react-test-renderer": "^16.13.1",
"redux-api-middleware": "^3.2.1",
"redux-mock-store": "^1.5.4",
"regenerator-runtime": "0.13.5",
"sass-loader": "^8.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"universal-cookie": "^4.0.3",
"webpack": "4.42.1",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"standard": {
"globals": [
"localStorage",
"window"
]
},
"author": "Ashish Kumar",
"license": "ISC",
"dependencies": {
"@loadable/component": "^5.12.0",
"@loadable/server": "^5.12.0",
"aws-sdk": "^2.692.0",
"axios": "^0.21.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"history": "^4.10.1",
"isomorphic-cookie": "^1.2.4",
"isomorphic-style-loader": "^5.1.0",
"multer": "^1.4.2",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-dropzone": "^11.0.1",
"react-easy-crop": "^3.0.1",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"engines": {
"node": "10.x"
}
}