-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.92 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.92 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "omega",
"description": "Website for the Omega Megagames group",
"version": "1.0.0",
"license": "MIT",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"cacheDirectories": [
".next/cache"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"@tailwindcss/forms": "^0.5.11",
"@types/react-transition-group": "^4.4.12",
"argon2": "^0.44.0",
"body-parser": "^2.2.2",
"feed": "^5.1.0",
"formik": "^2.4.9",
"fp-ts": "^2.16.11",
"io-ts": "^2.2.22",
"io-ts-types": "^0.5.19",
"iron-session": "^8.0.4",
"jest-environment-jsdom": "^30.2.0",
"mongodb": "^7.0.0",
"monocle-ts": "^2.3.13",
"newtype-ts": "^0.3.5",
"next": "16.1.5",
"normalize.css": "^8.0.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"react-transition-group": "^4.4.5",
"rss-parser": "^3.13.0",
"swr": "^2.3.8",
"typescript": "^5.9.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-test-renderer": "^19.1.0",
"@types/uuid": "^11.0.0",
"babel-jest": "^30.2.0",
"eslint": "^9.26.0",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"husky": ">=9",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"lint-staged": ">=16",
"postcss": "^8.5.6",
"prettier": "3.8.1",
"react-test-renderer": "^19.2.3",
"tailwindcss": "^4.1.18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "eslint .",
"ts:watch": "tsc --noEmit --incremental --watch",
"prepare": "husky",
"postinstall": "npm rebuild argon2 -- --build-from-source"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}