2023-01-29 21:07:23 +01:00
|
|
|
{
|
|
|
|
|
"name": "plebchan",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"dependencies": {
|
2023-03-18 12:29:18 +01:00
|
|
|
"@babel/core": "^7.21.3",
|
2023-02-07 13:23:14 +01:00
|
|
|
"@babel/plugin-syntax-flow": "^7.18.6",
|
2023-03-18 12:29:18 +01:00
|
|
|
"@babel/plugin-transform-react-jsx": "^7.21.0",
|
2023-03-28 11:23:27 +02:00
|
|
|
"@plebbit/plebbit-react-hooks": "https://github.com/plebbit/plebbit-react-hooks.git#e47cb245b8af0ae0fdf1ad3170d5097918d1349e",
|
2023-03-18 12:29:18 +01:00
|
|
|
"@testing-library/dom": "^9.0.1",
|
2023-01-29 21:07:23 +01:00
|
|
|
"@testing-library/jest-dom": "^5.14.1",
|
2023-03-18 12:29:18 +01:00
|
|
|
"@testing-library/react": "^14.0.0",
|
|
|
|
|
"@testing-library/user-event": "^14.4.3",
|
2023-03-22 12:59:51 +01:00
|
|
|
"@types/node": "^18.15.5",
|
2023-03-28 11:23:27 +02:00
|
|
|
"@types/react": "^18.0.30",
|
2023-01-31 23:08:57 +01:00
|
|
|
"babel-plugin-styled-components": "^2.0.7",
|
2023-03-27 17:18:05 +02:00
|
|
|
"dompurify": "^3.0.1",
|
2023-03-18 12:29:18 +01:00
|
|
|
"eslint": "^8.36.0",
|
2023-02-13 16:11:43 +01:00
|
|
|
"eslint-config-react-app": "^7.0.1",
|
2023-02-22 16:31:45 +01:00
|
|
|
"ext-name": "^5.0.0",
|
2023-03-25 14:54:04 +01:00
|
|
|
"lodash": "^4.17.21",
|
2023-03-27 17:18:05 +02:00
|
|
|
"markdown-it": "^13.0.1",
|
2023-02-07 13:23:14 +01:00
|
|
|
"postcss": "^8.4.21",
|
2023-01-29 21:07:23 +01:00
|
|
|
"react": "^18.2.0",
|
2023-03-19 11:49:05 +01:00
|
|
|
"react-content-loader": "^6.2.1",
|
2023-01-29 21:07:23 +01:00
|
|
|
"react-dom": "^18.2.0",
|
2023-03-16 21:16:59 +01:00
|
|
|
"react-draggable": "^4.4.5",
|
2023-02-01 13:30:32 +01:00
|
|
|
"react-helmet-async": "^1.3.0",
|
2023-02-07 13:23:14 +01:00
|
|
|
"react-infinite-scroller": "^1.2.6",
|
|
|
|
|
"react-is": "^18.2.0",
|
2023-03-27 17:18:05 +02:00
|
|
|
"react-markdown": "^8.0.6",
|
2023-03-09 17:51:56 +01:00
|
|
|
"react-modal": "^3.16.1",
|
2023-03-18 12:29:18 +01:00
|
|
|
"react-router-dom": "^6.9.0",
|
2023-01-29 21:07:23 +01:00
|
|
|
"react-scripts": "5.0.1",
|
2023-03-13 22:15:57 +01:00
|
|
|
"react-toastify": "^9.1.1",
|
2023-03-18 12:29:18 +01:00
|
|
|
"react-tooltip": "^5.10.0",
|
2023-03-24 18:08:07 +01:00
|
|
|
"react-video-thumbnail": "^0.1.3",
|
2023-03-18 12:29:18 +01:00
|
|
|
"styled-components": "^5.3.9",
|
|
|
|
|
"web-vitals": "^3.3.0",
|
2023-03-13 14:29:34 +01:00
|
|
|
"zustand": "^4.3.6"
|
2023-01-29 21:07:23 +01:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2023-02-04 22:10:54 +01:00
|
|
|
"start": "craco start",
|
|
|
|
|
"build": "craco build",
|
|
|
|
|
"test": "craco test"
|
2023-01-29 21:07:23 +01: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"
|
|
|
|
|
]
|
2023-01-31 23:08:57 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-03-18 12:29:18 +01:00
|
|
|
"@craco/craco": "^7.1.0",
|
|
|
|
|
"typescript": "^5.0.2"
|
2023-01-31 23:08:57 +01:00
|
|
|
},
|
|
|
|
|
"resolutions": {
|
|
|
|
|
"styled-components": "^5"
|
2023-01-29 21:07:23 +01:00
|
|
|
}
|
|
|
|
|
}
|