js-waku-examples/web-chat/package.json

68 lines
1.8 KiB
JSON
Raw Normal View History

2022-06-17 00:48:15 +00:00
{
"name": "web-chat",
"version": "0.1.0",
"private": true,
2022-09-01 04:33:56 +00:00
"homepage": "/web-chat",
2022-06-17 00:48:15 +00:00
"dependencies": {
"@livechat/ui-kit": "^0.5.0-20",
"@multiformats/multiaddr": "^10.4.0",
"js-waku": "0.24.0-f52dd9e",
"process": "^0.11.10",
2022-09-01 04:30:13 +00:00
"protons-runtime": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
2022-09-01 04:30:13 +00:00
"server-name-generator": "^1.0.5",
"uint8arraylist": "^2.3.2"
2022-06-17 00:48:15 +00:00
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.32",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
2022-06-17 00:48:15 +00:00
"cspell": "^6.0.0",
"gh-pages": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
2022-09-01 04:30:13 +00:00
"protons": "^5.1.0",
2022-06-17 00:48:15 +00:00
"react-scripts": "5.0.1",
"typescript": "^4.6.4",
"url": "^0.11.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:unit": "react-scripts test",
2022-06-17 00:48:15 +00:00
"fix": "run-s fix:*",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts --ext .tsx",
"test:prettier": "prettier \"src/**/*.{ts,tsx}\" \"./*.json\" --list-different",
2022-08-08 01:26:39 +00:00
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.{ts,tsx},public/**/*.html}\" -c ../.cspell.json",
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" \"./*.json\" --write",
2022-06-17 00:48:15 +00:00
"fix:lint": "eslint src --ext .ts --ext .tsx --fix",
2022-09-01 04:30:13 +00:00
"proto": "protons src/proto/*.proto",
2022-06-17 00:48:15 +00:00
"js-waku:build": "cd ../; npm run build",
"predeploy": "run-s js-waku:build build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}