-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.3 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
{
"name": "app_name",
"version": "1.0.0",
"description": "App Description",
"main": "index.js",
"author": "Dmytro Nasyrov @ Pharos Production Inc.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com"
},
"bugs": {
"url": "https://github.com"
},
"license": "MIT",
"homepage": "http://www.pharosproduction.com",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-display-name": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"es6-promise": "^4.2.4",
"eslint": "^5.5.0",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"node-env-file": "^0.1.8",
"node-sass": "^4.9.3",
"ramda": "^0.25.0",
"react-router-dom": "^4.3.1",
"redux-devtools": "^3.4.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.2.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"bootstrap": "^4.1.3",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-popper": "^1.0.2",
"react-redux": "^5.0.7",
"react-transition-group": "^2.4.0",
"reactstrap": "^6.4.0",
"redux": "^4.0.0",
"redux-promise": "^0.6.0",
"redux-recycle": "^1.4.0"
},
"scripts": {
"start": "webpack-dev-server --config ./webpack/webpack.config.dev.js --progress --profile --colors --watch --port 3000",
"prod": "webpack --config ./webpack/webpack.config.prod.js --profile --colors --bail",
"test": "echo \"All tests passed!\" && exit 0"
}
}