-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.72 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
{
"name": "webscrapper",
"version": "1.0.0",
"description": "A GUI tool for parallel file downloading",
"homepage": "https://github.com/vlatri/webScrapper#readme",
"bugs": {
"url": "https://github.com/vlatri/webScrapper/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlatri/webScrapper.git"
},
"license": "ISC",
"author": "Vlad Trishch",
"main": "index.js",
"scripts": {
"start": "yarn front:build && yarn back:build && yarn back:run-build",
"front:dev": "node ./frontend/webpack-server.js --env=dev",
"front:build": "yarn front:clean && yarn front:copy & cd frontend && webpack --env=dist",
"front:clean": "rimraf ./frontend/build/*",
"front:copy": "copyfiles -f ./frontend/src/index.html ./frontend/src/favicon.ico ./frontend/build",
"back:dev": "webpack --config ./backend/config/webpack-watch.babel.js & nodemon ./backend/build/bundle.js --watch backend",
"back:build": "NODE_ENV=production webpack --config ./backend/config/webpack-build.babel.js",
"back:run-build": "node ./backend/build/bundle.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"bootstrap": "^4.2.1",
"core-js": "^2.0.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"filedownloader": "https://github.com/vlatri/node-filedownloader#stats-update-fixes",
"mongoose": "^5.2.6",
"normalize.css": "^4.0.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-jss": "^8.6.1",
"react-redux": "^6.0.0",
"react-redux-snackbar": "^1.1.0",
"reactstrap": "^7.1.0",
"redux": "^4.0.1",
"redux-act": "^1.7.4",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^3.0.0",
"ws": "^6.1.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-polyfill": "^6.3.14",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.5.0",
"copyfiles": "^1.0.0",
"css-loader": "^0.23.0",
"eslint": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^1.1.11",
"glob": "^7.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"minimist": "^1.2.0",
"null-loader": "^0.1.1",
"open": "0.0.5",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^16.4.2",
"rimraf": "^2.4.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.9",
"webpack": "^4.0.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-node-externals": "^1.7.2"
},
"resolutions": {
"terser": "3.14.1"
}
}