107 lines
3.4 KiB
JSON
107 lines
3.4 KiB
JSON
{
|
|
"name": "evo_calculator",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@apollo/client": "^3.2.5",
|
|
"@babel/code-frame": "^7.10.4",
|
|
"@babel/helper-split-export-declaration": "^7.11.0",
|
|
"@craco/craco": "^5.6.4",
|
|
"@testing-library/jest-dom": "^4.2.4",
|
|
"@testing-library/react": "^9.3.2",
|
|
"@testing-library/user-event": "^7.1.2",
|
|
"@types/graphql": "^14.5.0",
|
|
"antd": "^4.6.4",
|
|
"axios": "^0.20.0",
|
|
"body-parser": "^1.19.0",
|
|
"class-validator": "^0.12.2",
|
|
"compression": "^1.7.4",
|
|
"cookie-parser": "^1.4.5",
|
|
"cors": "^2.8.5",
|
|
"craco-less": "^1.17.0",
|
|
"cross-fetch": "^3.0.6",
|
|
"express": "^4.17.1",
|
|
"express-http-proxy": "^1.6.2",
|
|
"express-ntlm": "^2.5.2",
|
|
"graphql": "^15.4.0",
|
|
"helmet": "^4.1.0",
|
|
"http-errors": "^1.8.0",
|
|
"lodash": "^4.17.20",
|
|
"luxon": "^1.25.0",
|
|
"mobx": "^6.0.0",
|
|
"mobx-react-lite": "^3.0.0",
|
|
"morgan": "^1.10.0",
|
|
"mssql": "^6.2.1",
|
|
"nodemon": "^2.0.4",
|
|
"normalize.css": "^8.0.1",
|
|
"pluralize": "^8.0.0",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"react-router": "^5.2.0",
|
|
"react-router-dom": "^5.2.0",
|
|
"react-scripts": "^3.4.3",
|
|
"recompose": "^0.30.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"styled-components": "^5.1.1",
|
|
"styled-system": "^5.1.5",
|
|
"ts-loader": "^8.0.2",
|
|
"typeorm": "^0.2.25",
|
|
"typescript": "3.9.7",
|
|
"use-debounce": "^3.4.3",
|
|
"validator": "^13.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/body-parser": "^1.19.0",
|
|
"@types/compression": "^1.7.0",
|
|
"@types/cookie-parser": "^1.4.2",
|
|
"@types/cors": "^2.8.7",
|
|
"@types/express": "^4.17.7",
|
|
"@types/express-http-proxy": "^1.6.1",
|
|
"@types/faker": "^5.1.0",
|
|
"@types/jest": "^26.0.15",
|
|
"@types/lodash": "^4.14.159",
|
|
"@types/luxon": "^1.25.0",
|
|
"@types/morgan": "^1.9.1",
|
|
"@types/node": "^14.14.6",
|
|
"@types/pluralize": "^0.0.29",
|
|
"@types/react-router-dom": "^5.1.5",
|
|
"@types/styled-components": "^5.1.2",
|
|
"@types/styled-system": "^5.1.10",
|
|
"agentkeepalive": "^4.1.3",
|
|
"dotenv": "^8.2.0",
|
|
"faker": "^5.1.0",
|
|
"http-proxy-middleware": "^1.0.6",
|
|
"rimraf": "^3.0.2",
|
|
"webpack-cli": "^4.0.0",
|
|
"webpack-node-externals": "^2.5.1"
|
|
},
|
|
"scripts": {
|
|
"test": "craco test",
|
|
"eject": "react-scripts eject",
|
|
"dev": "cross-env NODE_ENV=development concurrently -p name -c \"yellow,magenta,blue\" -n \"webpack-server,nodemon-server,CRA\" \"yarn dev:server:webpack\" \"yarn dev:server:nodemon\" \"yarn dev:client\"",
|
|
"dev:client:only": "craco start",
|
|
"dev:client": "wait-on -l tcp:3001 && craco start",
|
|
"dev:server": "concurrently -p name -c \"yellow,magenta\" -n \"webpack-server,nodemon-server\" \"yarn dev:server:webpack\" \"yarn dev:server:nodemon\"",
|
|
"dev:server:webpack": "webpack --config webpack.config.server.js --watch",
|
|
"dev:server:nodemon": "rimraf build/server.js && wait-on -l build/server.js && nodemon build/server.js",
|
|
"build": "yarn build:client && yarn build:server",
|
|
"build:client": "craco build",
|
|
"build:server": "cross-env NODE_ENV=production webpack --config webpack.config.server.js"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|