owncast/web/package.json

55 lines
1.6 KiB
JSON
Raw Normal View History

2020-10-01 00:59:20 +03:00
{
"name": "owncast-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
2021-02-15 09:29:41 +03:00
"start": "next start",
"lint": "eslint --ext .js,.ts,.tsx types/ pages/ components/"
2020-10-01 00:59:20 +03:00
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"antd": "^4.16.11",
"chart.js": "^3.5.0",
"chartkick": "^4.0.5",
"classnames": "^2.3.1",
"date-fns": "^2.23.0",
"markdown-it": "^12.1.0",
"next": "^11.1.0",
2020-10-11 04:25:21 +03:00
"prop-types": "^15.7.2",
"rc-util": "^5.13.2",
"react": "^17.0.2",
2021-04-13 05:56:37 +03:00
"react-chartkick": "^0.5.0",
"react-dom": "^17.0.2",
2020-10-30 04:01:38 +03:00
"react-linkify": "^1.0.0-alpha",
"react-markdown": "^6.0.3",
"react-markdown-editor-lite": "^1.3.0",
"sass": "^1.36.0",
2021-07-20 08:02:02 +03:00
"ua-parser-js": "^0.7.28"
2020-10-01 01:12:10 +03:00
},
"devDependencies": {
"@types/chart.js": "^2.9.32",
"@types/classnames": "^2.3.1",
"@types/markdown-it": "^12.0.2",
"@types/node": "^16.3.1",
2020-10-11 04:25:21 +03:00
"@types/prop-types": "^15.7.3",
"@types/react": "^17.0.11",
2020-11-29 06:45:52 +03:00
"@types/react-linkify": "^1.0.0",
2021-07-20 08:02:02 +03:00
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"typescript": "^4.3.4"
2020-10-01 00:59:20 +03:00
}
}