airboardgame/package.json

96 lines
2.8 KiB
JSON
Raw Normal View History

{
"name": "airgameboard",
"version": "0.1.0",
"private": true,
"dependencies": {
2020-07-14 22:10:39 +02:00
"@color2k/compat": "^1.0.0-rc.5",
2021-02-12 17:17:26 +01:00
"@scripters/use-socket.io": "git+https://github.com/jrmi/use-socket.io.git#updated",
2020-06-23 20:21:12 +02:00
"@welldone-software/why-did-you-render": "^4.2.5",
2020-08-20 19:56:42 +02:00
"body-parser": "^1.19.0",
2020-10-16 14:52:48 +02:00
"chota": "^0.8.0",
2021-02-12 17:17:26 +01:00
"client2client.io": "^1.3.4",
2020-07-14 22:10:39 +02:00
"color2k": "^1.0.0-rc.5",
2021-03-19 12:54:20 +01:00
"dayjs": "^1.10.4",
"diacritic": "0.0.2",
"final-form": "^4.20.0",
2020-06-19 13:23:32 +02:00
"i18next": "^19.4.5",
"i18next-browser-languagedetector": "^4.3.1",
2020-06-08 21:00:24 +02:00
"lodash.debounce": "^4.0.8",
"lodash.findlast": "^4.6.0",
"lodash.intersection": "^4.4.0",
"lodash.throttle": "^4.1.1",
2021-02-10 22:35:57 +01:00
"marked": "^2.0.0",
2020-06-07 13:49:04 +02:00
"memoizee": "^0.4.14",
"nanoid": "^3.1.9",
"platform": "^1.3.6",
2020-06-07 13:49:04 +02:00
"randomcolor": "^0.5.4",
2020-06-17 09:15:07 +02:00
"rc-slider": "^9.3.1",
2020-12-06 20:00:46 +01:00
"react": "^17.0.1",
2020-06-12 11:30:53 +02:00
"react-color": "^2.18.1",
2020-06-21 18:12:40 +02:00
"react-confirm-alert": "^2.6.1",
2020-12-06 20:00:46 +01:00
"react-dom": "^17.0.1",
2020-06-07 13:49:04 +02:00
"react-draggable": "^4.4.2",
2020-06-16 20:50:55 +02:00
"react-dropzone": "^11.0.1",
"react-final-form": "^6.5.0",
2020-06-19 13:23:32 +02:00
"react-i18next": "^11.7.0",
2021-04-07 22:33:18 +02:00
"react-query": "^3.13.4",
2020-06-08 20:32:24 +02:00
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
2020-11-07 14:55:46 +01:00
"react-toastify": "^6.1.0",
2020-06-14 21:18:51 +02:00
"react-use-localstorage": "^3.4.1",
2021-03-19 12:54:20 +01:00
"react-useportal": "^1.0.14",
2020-06-07 13:49:04 +02:00
"react-zoom-pan-pinch": "^1.6.1",
2021-04-10 21:27:50 +02:00
"recoil": "^0.2.0",
2021-02-12 17:17:26 +01:00
"socket.io-client": "^3.1.1",
2020-06-19 14:49:07 +02:00
"styled-components": "^5.1.1"
},
"scripts": {
2021-03-09 21:44:09 +01:00
"dev": "vite",
"start": "npm run dev -- --open",
"build": "vite build",
"serve": "vite preview --open",
2020-06-18 21:08:49 +02:00
"lint": "eslint src/",
"prettier": "prettier --write src/",
2021-01-30 21:49:05 +01:00
"server": "echo 'This command is deprecated. Please, see Readme for more information.'",
2020-07-04 14:38:15 +02:00
"i18n:scanner": "i18next-scanner --config i18next-scanner.config.js 'src/**/*.{js,jsx}'",
"cypress:open": "LANGUAGE=en cypress open",
2021-03-09 21:44:09 +01:00
"cypress:run": "LANGUAGE=en cypress run"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
2020-06-07 13:49:04 +02:00
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
2020-06-07 13:49:04 +02:00
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
2021-03-09 21:44:09 +01:00
"@vitejs/plugin-react-refresh": "^1.3.1",
2020-07-04 14:38:15 +02:00
"cypress": "^4.9.0",
2021-03-09 21:44:09 +01:00
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
2020-06-18 20:57:28 +02:00
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
2021-03-09 21:44:09 +01:00
"eslint-plugin-react": "^7.22.0",
2020-06-07 13:49:04 +02:00
"eslint-plugin-react-hooks": "^4.0.4",
2021-02-21 14:18:38 +01:00
"http-proxy-middleware": "^1.0.6",
2020-06-28 15:42:23 +02:00
"i18next-scanner": "^2.11.0",
2021-02-12 17:17:26 +01:00
"netlify-cli": "^3.7.1",
2020-07-12 18:10:52 +02:00
"prettier": "2.0.5",
2021-03-09 21:44:09 +01:00
"rollup-plugin-analyzer": "^4.0.0",
"vite": "^2.0.5",
2021-02-10 22:39:25 +01:00
"wait-on": "^5.2.1"
}
}