-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "oma3",
"author": "@dethstrobe",
"license": "GNU 3.0",
"version": "3.13.7",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"lint": "next lint",
"stage-lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "npm run lint && npm run type-check && npm test -- --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run stage-lint -- ",
"npm run format -- "
]
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.16.1",
"@mui/material": "^5.16.4",
"@next/bundle-analyzer": "^15.1.4",
"next": "^15.1.2",
"next-pwa": "^5.6.0",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-indexed-db-hook": "^1.0.14"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.5",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.20.0",
"babel-jest": "^29.6.4",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-react": "^7.35.0",
"fake-indexeddb": "^6.0.0",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.7",
"msw": "^2.3.1",
"prettier": "^3.3.2",
"typescript": "^5.6.2"
},
"overrides": {
"msw": {
"typescript": "$typescript"
},
"eslint-config-next": {
"typescript": "$typescript"
}
}
}