2021-04-14 04:44:12 +00:00
|
|
|
{
|
|
|
|
"name": "web-chat",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
2021-04-28 01:59:59 +00:00
|
|
|
"homepage": "/js-waku",
|
2021-04-14 04:44:12 +00:00
|
|
|
"dependencies": {
|
2021-04-19 03:33:23 +00:00
|
|
|
"@material-ui/core": "^4.11.3",
|
2021-04-29 01:53:21 +00:00
|
|
|
"peer-id": "^0.14.8",
|
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
2021-04-29 05:30:00 +00:00
|
|
|
"server-name-generator": "^1.0.5",
|
2021-04-29 01:53:21 +00:00
|
|
|
"waku": "file:../build/main/lib",
|
|
|
|
"waku-chat": "file:../build/main/chat",
|
|
|
|
"web-vitals": "^1.1.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
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-29 01:53:21 +00:00
|
|
|
"cspell": "^5.3.12",
|
|
|
|
"gh-pages": "^3.1.0",
|
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
"prettier": "^2.2.1",
|
2021-04-14 04:44:12 +00:00
|
|
|
"react-scripts": "4.0.3",
|
2021-04-29 01:53:21 +00:00
|
|
|
"typescript": "^4.2.4"
|
2021-04-14 04:44:12 +00:00
|
|
|
},
|
|
|
|
"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:*",
|
2021-04-22 07:03:33 +00:00
|
|
|
"test:lint": "eslint src --ext .ts --ext .tsx",
|
|
|
|
"test:prettier": "prettier \"src/**/*.{ts,tsx}\" --list-different",
|
2021-04-23 05:21:51 +00:00
|
|
|
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.{ts,tsx},public/**/*.html}\"",
|
2021-04-22 07:03:33 +00:00
|
|
|
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write",
|
2021-04-22 11:29:24 +00:00
|
|
|
"fix:lint": "eslint src --ext .ts --ext .tsx --fix",
|
|
|
|
"js-waku:build": "cd ../; npm run build",
|
2021-04-28 01:52:26 +00:00
|
|
|
"predeploy": "run-s js-waku:build build",
|
2021-04-22 11:29:24 +00:00
|
|
|
"deploy": "gh-pages -d build"
|
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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|