brutal-legends/package.json

39 lines
1.2 KiB
JSON
Raw Permalink Normal View History

{
2020-03-05 08:07:46 +01:00
"scripts": {
"start": "cross-env NODE_ENV=development parcel index.html --public-url / --out-dir _build",
2021-03-31 10:06:31 +02:00
"build": "cross-env NODE_ENV=production parcel build index.html --public-url /bl/ --out-dir docs --no-source-maps --no-content-hash",
2020-03-05 08:07:46 +01:00
"lint": "cross-env NODE_ENV=development prettier --check src/**/*"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"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",
"typescript": "^3.6.3"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.4.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
2021-06-27 12:26:03 +02:00
"redux-saga": "^1.0.2",
"symbol-observable": "^4.0.0"
2020-03-05 08:07:46 +01:00
},
"postcss": {
"modules": false,
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"defaults"
]
}