-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.95 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.95 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
{
"name": "bp-hapi-react-redux",
"version": "1.1.0",
"description": "Hapi React Redux Boilerplate",
"main": "src/server.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"lint": "eslint . --ext .js,.jsx",
"lint-fix": "eslint . --ext .js --fix",
"build": "npm run build-server && npm run build-client",
"build-server": "rimraf .build/ && webpack --config webpack.server.config.js --mode production",
"build-client": "webpack --mode production",
"start-build": "SERVICE_HOST=0.0.0.0:3001 NODE_ENV=localhost APP_MOCKS=0 node ./.build/server",
"start": "node start.js",
"start-server": "SERVICE_HOST=0.0.0.0:3001 NODE_ENV=localhost APP_MODE_DEV=1 node ./start-server",
"start-client": "webpack-dev-server --mode development",
"docker-build": "./docker-build.sh $npm_package_name $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klishevich/bp-hapi-react-redux.git"
},
"author": "Michael Klishevich",
"license": "ISC",
"bugs": {
"url": "https://github.com/klishevich/bp-hapi-react-redux/issues"
},
"homepage": "https://github.com/klishevich/bp-hapi-react-redux#readme",
"dependencies": {
"@material-ui/core": "^4.6.0",
"@material-ui/icons": "^4.5.1",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"boom": "^7.3.0",
"classnames": "^2.2.6",
"eslint-plugin-jest": "^22.20.1",
"formik": "^2.1.4",
"h2o2": "^8.2.0",
"handlebars": "^4.5.1",
"hapi": "^17.8.5",
"history": "^4.10.1",
"i": "^0.3.6",
"inert": "^5.1.3",
"nock": "^11.6.0",
"npm": "^6.13.0",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-redux": "^5.1.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^0.16.2",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-async-to-generator": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"autoprefixer": "^9.7.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.16.0",
"file-loader": "^4.2.0",
"jest": "^24.9.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"prettier": "^1.18.2",
"redux-devtools": "^3.5.0",
"respawn": "^2.6.0",
"rimraf": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}