js-waku/web-chat/package.json

60 lines
1.5 KiB
JSON
Raw Normal View History

2021-04-14 04:44:12 +00:00
{
"name": "web-chat",
"version": "0.1.0",
"private": true,
"dependencies": {
2021-04-19 03:33:23 +00:00
"@material-ui/core": "^4.11.3",
2021-04-14 04:44:12 +00:00
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.22",
"@types/node": "^12.20.7",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
2021-04-21 05:51:52 +00:00
"peer-id": "^0.14.8",
2021-04-14 04:44:12 +00:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"typescript": "^4.2.4",
2021-04-21 05:51:52 +00:00
"waku": "file:../build/main/lib",
"waku-chat": "file:../build/main/chat",
2021-04-14 04:44:12 +00:00
"web-vitals": "^1.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
2021-04-21 00:49:19 +00:00
"test:unit": "react-scripts test",
2021-04-19 02:55:33 +00:00
"eject": "react-scripts eject",
"fix": "run-s fix:*",
2021-04-21 00:49:19 +00:00
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
2021-04-19 02:55:33 +00:00
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix"
2021-04-14 04:44:12 +00:00
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
2021-04-21 00:49:19 +00:00
},
"devDependencies": {
"cspell": "^5.3.12",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
2021-04-14 04:44:12 +00:00
}
}