2018-11-21 14:47:30 +01:00
|
|
|
{
|
|
|
|
|
"scripts": {
|
2020-03-04 16:18:11 +01:00
|
|
|
"start": "cross-env NODE_ENV=development parcel index.html --public-url / --out-dir _build",
|
|
|
|
|
"build": "cross-env NODE_ENV=production parcel build index.html --public-url /urban-enigma/ --out-dir docs --no-source-maps --no-content-hash",
|
|
|
|
|
"lint": "cross-env NODE_ENV=development prettier --check src/**/* assets/*.css"
|
2018-11-21 14:47:30 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-03-04 16:18:11 +01:00
|
|
|
"@babel/core": "^7.4.0",
|
|
|
|
|
"@babel/plugin-transform-runtime": "^7.4.0",
|
|
|
|
|
"@babel/preset-env": "^7.5.5",
|
2019-09-17 21:49:19 +02:00
|
|
|
"@babel/preset-react": "^7.0.0",
|
2020-03-04 16:18:11 +01:00
|
|
|
"autoprefixer": "^9.5.0",
|
|
|
|
|
"cross-env": "^5.2.0",
|
|
|
|
|
"jest": "^24.9.0",
|
|
|
|
|
"parcel-bundler": "^1.12.3",
|
|
|
|
|
"parcel-plugin-static-files-copy": "^2.3.1",
|
|
|
|
|
"prettier": "^1.18.2"
|
2018-11-21 14:47:30 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2020-03-04 16:18:11 +01:00
|
|
|
"@babel/runtime-corejs2": "^7.4.2",
|
|
|
|
|
"react": "^16.8.5",
|
|
|
|
|
"react-dom": "^16.8.5",
|
|
|
|
|
"react-redux": "^6.0.1",
|
|
|
|
|
"redux": "^4.0.1",
|
|
|
|
|
"redux-saga": "^1.0.2"
|
|
|
|
|
},
|
|
|
|
|
"postcss": {
|
|
|
|
|
"modules": false,
|
|
|
|
|
"plugins": {
|
|
|
|
|
"autoprefixer": {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"browserslist": [
|
|
|
|
|
"defaults"
|
|
|
|
|
]
|
2018-11-21 14:47:30 +01:00
|
|
|
}
|