-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 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
76
77
{
"name": "theresa.wiki",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "NEXT_MANUAL_SIG_HANDLE=true next start",
"lint": "next lint",
"gen-license": "yarn licenses generate-disclaimer > public/LICENSES.txt",
"postinstall": "husky"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@google-cloud/firestore": "^7.2.0",
"@mui/icons-material": "^5.15.6",
"@mui/material": "^5.15.6",
"ajv": "^8.12.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"lru-cache": "^10.2.0",
"next": "^14.2.3",
"next-pwa": "^5.6.0",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"three": "^0.160.0",
"uri-js": "^4.4.1",
"webpack": "^5.90.0",
"yaml": "^2.3.4",
"yaml-loader": "^0.8.0"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.7",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-is": "^18.2.4",
"@types/three": "^0.160.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-yml": "^1.12.2",
"husky": "^9.0.6",
"typescript": "^5.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"pre-commit": [
"lint",
"type-check"
],
"packageManager": "[email protected]"
}