ministream-frontend/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1003 B
JSON
Raw Normal View History

2023-12-02 10:49:17 +00:00
{
"name": "ministream-frontend",
"version": "1.0.0",
"description": "",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
2023-12-02 12:51:04 +00:00
"start": "parcel src/index.html",
"build": "parcel build src/index.html",
2023-12-02 10:49:17 +00:00
"type-check": "tsc --noEmit",
2023-12-07 21:43:55 +00:00
"test": "jest"
2023-12-02 10:49:17 +00:00
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
2023-12-07 21:43:55 +00:00
"@jest/globals": "^29.7.0",
2024-09-18 18:33:43 +00:00
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"eslint": "^9.10.0",
2023-12-07 21:43:55 +00:00
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
2024-09-18 18:33:43 +00:00
"parcel": "^2.12.0",
"prettier": "^3.3.3",
2023-12-02 10:49:17 +00:00
"process": "^0.11.10",
2024-09-18 18:33:43 +00:00
"ts-jest": "^29.2.5",
2023-12-02 10:49:17 +00:00
"ts-loader": "^9.5.1",
2024-09-18 18:33:43 +00:00
"typescript": "^5.6.2"
2023-12-02 10:49:17 +00:00
},
"dependencies": {
2024-09-18 18:33:43 +00:00
"@types/node": "^22.5.5",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
2023-12-02 10:49:17 +00:00
}
}