init
This commit is contained in:
78
package.json
Normal file
78
package.json
Normal file
@ -0,0 +1,78 @@
|
||||
{
|
||||
"name": "crypto-bot-frontend",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"symlinks": "node scripts/create-symlinks/index",
|
||||
"start": "webpack serve",
|
||||
"init": "npm run clean && npm i && npm run symlinks",
|
||||
"dev": "webpack serve --open false",
|
||||
"build": "webpack --mode=production",
|
||||
"eslint": "eslint -c .eslintrc.json src --fix",
|
||||
"tsc": "tsc --p ./tsconfig.json",
|
||||
"test": "jest",
|
||||
"prune": "node scripts/find-unused-code",
|
||||
"checks": "npm run eslint && npm run tsc && npm run prune && npm run test && npm run build",
|
||||
"clean": "rm -rf node_modules && rm -rf build"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://gitlab.vigdorov.ru/cryptobot/crypto-bot-frontend"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@reatom/core": "^1.1.5",
|
||||
"@reatom/react": "^1.1.5",
|
||||
"antd": "^4.16.2",
|
||||
"axios": "^0.21.0",
|
||||
"convert-layout": "^0.8.2",
|
||||
"date-fns": "^2.16.1",
|
||||
"fp-ts": "^2.8.5",
|
||||
"history": "^5.0.0",
|
||||
"lodash": "^4.17.20",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1",
|
||||
"react-router-dom": "^5.2.0",
|
||||
"ts-loader": "^8.0.7",
|
||||
"typescript": "^4.0.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.3",
|
||||
"@babel/preset-env": "^7.12.1",
|
||||
"@babel/preset-typescript": "^7.12.1",
|
||||
"@types/convert-layout": "^0.5.1",
|
||||
"@types/jest": "^26.0.15",
|
||||
"@types/lodash": "^4.14.165",
|
||||
"@types/node": "^12.19.1",
|
||||
"@types/react": "^16.9.53",
|
||||
"@types/react-dom": "^16.9.8",
|
||||
"@types/react-router-dom": "^5.1.6",
|
||||
"@types/uuid": "^8.3.0",
|
||||
"@typescript-eslint/eslint-plugin": "^4.6.0",
|
||||
"@typescript-eslint/parser": "^4.6.0",
|
||||
"babel-jest": "^26.6.1",
|
||||
"clean-webpack-plugin": "^3.0.0",
|
||||
"css-loader": "^5.0.0",
|
||||
"eslint": "^7.12.1",
|
||||
"eslint-config-prettier": "^6.15.0",
|
||||
"eslint-plugin-import": "^2.22.1",
|
||||
"eslint-plugin-jest": "^24.1.3",
|
||||
"eslint-plugin-prettier": "^3.1.4",
|
||||
"eslint-plugin-react": "^7.21.5",
|
||||
"eslint-plugin-react-hooks": "^4.2.0",
|
||||
"file-loader": "^6.2.0",
|
||||
"html-webpack-plugin": "^5.0.0-beta.1",
|
||||
"mini-css-extract-plugin": "^1.2.1",
|
||||
"prettier": "^2.1.2",
|
||||
"react-scripts": "^4.0.1",
|
||||
"sass": "^1.28.0",
|
||||
"sass-loader": "^10.0.4",
|
||||
"ts-prune": "^0.8.4",
|
||||
"webpack": "^5.3.2",
|
||||
"webpack-cli": "^4.1.0",
|
||||
"webpack-dev-server": "^3.11.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user