Files
5chan/package.json
T

60 lines
1.4 KiB
JSON
Raw Normal View History

2023-01-29 21:07:23 +01:00
{
"name": "plebchan",
"version": "0.1.0",
"private": true,
"dependencies": {
2023-02-07 13:23:14 +01:00
"@babel/core": "^7.20.12",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.20.13",
2023-01-31 23:08:57 +01:00
"@plebbit/plebbit-react-hooks": "https://github.com/plebbit/plebbit-react-hooks",
2023-02-07 13:23:14 +01:00
"@testing-library/dom": "^8.20.0",
2023-01-29 21:07:23 +01:00
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
2023-02-07 13:23:14 +01:00
"@types/node": "^18.13.0",
2023-01-31 23:08:57 +01:00
"babel-plugin-styled-components": "^2.0.7",
2023-02-07 13:23:14 +01:00
"postcss": "^8.4.21",
2023-01-29 21:07:23 +01:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
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-01-31 23:08:57 +01:00
"react-router-dom": "^6.8.0",
2023-01-29 21:07:23 +01:00
"react-scripts": "5.0.1",
2023-01-31 23:08:57 +01:00
"styled-components": "^5.3.6",
2023-01-29 21:07:23 +01:00
"web-vitals": "^2.1.0"
},
"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-02-04 22:10:54 +01:00
"@craco/craco": "^7.0.0",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
2023-01-31 23:08:57 +01:00
"typescript": "^4.9.5"
},
"resolutions": {
"styled-components": "^5"
2023-01-29 21:07:23 +01:00
}
}