diff options
author | crupest <crupest@outlook.com> | 2020-07-26 15:02:55 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-26 15:02:55 +0800 |
commit | b78d21a524f7a11ad29b4bd230f23825f80c3ed7 (patch) | |
tree | 88bfe8d4c5298f61a90c501933784885ec9ce77f /Timeline/ClientApp/package.json | |
parent | 886ab2a222bc503156542988edc7be5062f6e7b1 (diff) | |
download | timeline-b78d21a524f7a11ad29b4bd230f23825f80c3ed7.tar.gz timeline-b78d21a524f7a11ad29b4bd230f23825f80c3ed7.tar.bz2 timeline-b78d21a524f7a11ad29b4bd230f23825f80c3ed7.zip |
Merge front end repo
Diffstat (limited to 'Timeline/ClientApp/package.json')
-rw-r--r-- | Timeline/ClientApp/package.json | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/Timeline/ClientApp/package.json b/Timeline/ClientApp/package.json new file mode 100644 index 00000000..3c06baff --- /dev/null +++ b/Timeline/ClientApp/package.json @@ -0,0 +1,111 @@ +{ + "name": "timeline", + "version": "0.1.0", + "private": true, + "homepage": "https://crupest.xyz", + "keywords": [], + "description": "Timeline app.", + "dependencies": { + "axios": "^0.19.2", + "bootstrap": "^4.5.0", + "bootstrap-icons": "^1.0.0-alpha4", + "classnames": "^2.2.6", + "clsx": "^1.1.1", + "core-js": "^3.6.5", + "i18next": "^19.6.2", + "i18next-browser-languagedetector": "^5.0.0", + "localforage": "^1.7.4", + "lodash": "^4.17.15", + "pepjs": "^0.5.2", + "react": "^16.13.1", + "react-dom": "^16.13.1", + "react-hot-loader": "^4.12.21", + "react-i18next": "^11.5.0", + "react-inlinesvg": "^2.0.0", + "react-responsive": "^8.1.0", + "react-router": "^5.2.0", + "react-router-dom": "^5.2.0", + "reactstrap": "^8.4.1", + "regenerator-runtime": "^0.13.5", + "rxjs": "^6.5.5", + "workbox-precaching": "^5.1.3", + "workbox-routing": "^5.1.3", + "workbox-strategies": "^5.1.3", + "workbox-window": "^5.1.3", + "xregexp": "^4.3.0" + }, + "scripts": { + "start": "webpack-dev-server --config ./webpack.config.dev.js", + "start:mock": "webpack-dev-server --config ./webpack.config.dev.js --env.TIMELINE_USE_MOCK_BACKEND", + "build": "webpack --config ./webpack.config.prod.js", + "lint": "eslint src/ --ext .js --ext .jsx --ext .ts --ext .tsx" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "devDependencies": { + "@babel/core": "^7.10.5", + "@babel/plugin-proposal-class-properties": "^7.10.1", + "@babel/plugin-proposal-decorators": "^7.10.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1", + "@babel/plugin-proposal-optional-chaining": "^7.10.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/preset-env": "^7.10.2", + "@babel/preset-react": "^7.10.1", + "@babel/preset-typescript": "^7.10.1", + "@hot-loader/react-dom": "^16.13.0", + "@types/classnames": "^2.2.10", + "@types/crypto-js": "^3.1.47", + "@types/lodash": "^4.14.155", + "@types/node": "^14.0.11", + "@types/react": "^16.9.35", + "@types/react-dom": "^16.9.8", + "@types/react-responsive": "^8.0.2", + "@types/react-router": "^5.1.7", + "@types/react-router-dom": "^5.1.5", + "@types/reactstrap": "^8.4.2", + "@types/webpack-env": "^1.15.2", + "@types/xregexp": "^4.3.0", + "@typescript-eslint/eslint-plugin": "^3.6.1", + "@typescript-eslint/parser": "^3.6.1", + "@yarnpkg/pnpify": "^2.1.0", + "autoprefixer": "^9.8.0", + "babel-loader": "^8.1.0", + "babel-plugin-transform-builtin-extend": "^1.1.2", + "clean-webpack-plugin": "^3.0.0", + "copy-webpack-plugin": "^6.0.2", + "crypto-js": "^4.0.0", + "css-loader": "^3.5.3", + "eslint": "^7.2.0", + "eslint-config-prettier": "^6.11.0", + "eslint-plugin-prettier": "^3.1.3", + "eslint-plugin-react": "^7.20.0", + "eslint-plugin-react-hooks": "^4.0.8", + "file-loader": "^6.0.0", + "html-webpack-plugin": "^3.2.0", + "html-webpack-template": "^6.2.0", + "http-server": "^0.12.3", + "pnp-webpack-plugin": "^1.6.4", + "postcss-loader": "^3.0.0", + "prettier": "^2.0.5", + "sass": "^1.26.8", + "sass-loader": "^9.0.2", + "style-loader": "^1.2.1", + "ts-loader": "^8.0.1", + "typescript": "^3.9.7", + "url-loader": "^4.1.0", + "webpack": "^4.43.0", + "webpack-cli": "^3.3.11", + "webpack-dev-server": "^3.11.0", + "workbox-webpack-plugin": "^5.1.3" + } +} |