96 lines
2.9 KiB
JSON
96 lines
2.9 KiB
JSON
{
|
|
"name": "react-base",
|
|
"version": "0.0.1",
|
|
"description": "Base React template",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "nodemon --exec \"cross-env NODE_ENV=development webpack-dev-server\"",
|
|
"prebundle": "rimraf build/*",
|
|
"bundle": "cross-env NODE_ENV=production webpack",
|
|
"cacheclean": "rimraf node_modules/.cache/hard-source",
|
|
"precommit": "lint-staged",
|
|
"lint": "eslint --fix src --ext .jsx"
|
|
},
|
|
"author": "k4rli",
|
|
"contributors": [],
|
|
"keywords": [
|
|
"react",
|
|
"reactjs",
|
|
"react-boilerplate"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=11",
|
|
"npm": ">=6"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,css,md}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@reduxjs/toolkit": "1.3.6",
|
|
"core-js": "3.6.5",
|
|
"react": "16.13.1",
|
|
"react-dom": "16.13.1",
|
|
"react-hot-loader": "4.12.21",
|
|
"react-webcam": "5.0.2",
|
|
"regenerator-runtime": "0.13.5",
|
|
"use-dark-mode": "2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.9.6",
|
|
"@babel/plugin-proposal-class-properties": "7.8.3",
|
|
"@babel/plugin-proposal-decorators": "7.8.3",
|
|
"@babel/plugin-proposal-export-namespace-from": "7.8.3",
|
|
"@babel/plugin-proposal-function-sent": "7.8.3",
|
|
"@babel/plugin-proposal-json-strings": "7.8.3",
|
|
"@babel/plugin-proposal-numeric-separator": "7.8.3",
|
|
"@babel/plugin-proposal-optional-chaining": "7.9.0",
|
|
"@babel/plugin-proposal-throw-expressions": "7.8.3",
|
|
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
|
"@babel/plugin-syntax-import-meta": "7.8.3",
|
|
"@babel/plugin-transform-runtime": "7.9.6",
|
|
"@babel/preset-env": "7.9.6",
|
|
"@babel/preset-react": "7.9.4",
|
|
"@babel/register": "7.9.0",
|
|
"@babel/runtime-corejs3": "7.9.6",
|
|
"babel-eslint": "10.1.0",
|
|
"babel-loader": "8.1.0",
|
|
"babel-plugin-module-resolver": "4.0.0",
|
|
"browserslist": "4.12.0",
|
|
"connect-history-api-fallback": "1.6.0",
|
|
"copy-webpack-plugin": "6.0.1",
|
|
"cross-env": "7.0.2",
|
|
"css-loader": "3.5.3",
|
|
"eslint": "7.0.0",
|
|
"eslint-config-airbnb": "18.1.0",
|
|
"eslint-import-resolver-babel-module": "5.1.2",
|
|
"eslint-loader": "4.0.2",
|
|
"eslint-plugin-import": "2.20.2",
|
|
"eslint-plugin-jsx-a11y": "6.2.3",
|
|
"eslint-plugin-react": "7.20.0",
|
|
"eslint-plugin-react-hooks": "4.0.2",
|
|
"file-loader": "6.0.0",
|
|
"hard-source-webpack-plugin": "0.13.1",
|
|
"html-webpack-plugin": "4.3.0",
|
|
"koa-connect": "2.0.1",
|
|
"lint-staged": "10.2.2",
|
|
"mini-css-extract-plugin": "0.9.0",
|
|
"node-sass": "4.14.1",
|
|
"nodemon": "2.0.4",
|
|
"optimize-css-assets-webpack-plugin": "5.0.3",
|
|
"rimraf": "3.0.2",
|
|
"sass-loader": "8.0.2",
|
|
"script-ext-html-webpack-plugin": "2.1.4",
|
|
"style-loader": "1.2.1",
|
|
"terser-webpack-plugin": "3.0.1",
|
|
"webpack": "4.43.0",
|
|
"webpack-bundle-analyzer": "3.7.0",
|
|
"webpack-cli": "3.3.11",
|
|
"webpack-dev-server": "3.11.0",
|
|
"webpack-merge": "4.2.2"
|
|
}
|
|
}
|