Files
lucko-paste/package.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2021-03-26 22:00:12 +00:00
{
"name": "paste",
"version": "0.1.0",
"private": true,
"dependencies": {
2023-05-08 19:51:35 +01:00
"@monaco-editor/react": "^4.5.1",
2021-03-26 22:00:12 +00:00
"copy-to-clipboard": "^3.3.1",
"history": "^5.0.0",
2021-03-27 11:49:46 +00:00
"local-storage": "^2.0.0",
2023-05-08 21:18:58 +01:00
"monaco-themes": "^0.4.4",
2021-03-26 22:00:12 +00:00
"pako": "^2.0.3",
2022-11-06 22:46:13 +00:00
"react": "^18.2.0",
2022-01-27 23:26:16 +00:00
"react-device-detect": "^2.1.2",
2022-11-06 22:46:13 +00:00
"react-dom": "^18.2.0",
2023-05-08 19:51:35 +01:00
"react-scripts": "^5.0.1",
2022-11-06 22:46:13 +00:00
"styled-components": "^5.2.1",
"typescript": "^4.8.4",
"whatwg-mimetype": "^3.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/pako": "^2.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@types/whatwg-mimetype": "^3.0.0",
"monaco-editor": "^0.34.1",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1"
2021-03-26 22:00:12 +00:00
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
2022-11-06 22:46:13 +00:00
"eject": "react-scripts eject",
2023-05-08 21:18:58 +01:00
"format": "prettier --write '**/*.ts' '**/*.tsx' '**/*.css'",
"compile": "tsc"
2021-03-26 22:00: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"
]
}
}