-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.31 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.31 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@open-source-bazaar/web-site",
"version": "1.0.0",
"description": "Open Source Bazaar web-site",
"private": true,
"scripts": {
"prepare": "husky",
"install": "pnpx git-utility download https://github.com/Open-Source-Bazaar/key-vault main Open-Source-Bazaar.github.io || true",
"postinstall": "next typegen",
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"test": "lint-staged && tsc --noEmit"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@koa/router": "^15.4.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.4",
"core-js": "^3.49.0",
"echarts-jsx": "^0.6.0",
"file-type": "^22.0.1",
"idea-react": "^2.0.0-rc.13",
"jsonwebtoken": "^9.0.3",
"koa": "^3.2.0",
"koa-jwt": "^4.0.4",
"koajax": "^3.3.0",
"license-filter": "^0.2.5",
"marked": "^18.0.2",
"mime": "^4.1.0",
"mobx": "^6.15.0",
"mobx-github": "^0.6.2",
"mobx-i18n": "^0.7.2",
"mobx-lark": "^2.8.1",
"mobx-react": "^9.2.1",
"mobx-react-helper": "^0.5.1",
"mobx-restful": "^2.1.4",
"mobx-restful-table": "^2.6.3",
"mobx-strapi": "^0.8.1",
"next": "^16.2.4",
"next-pwa": "^5.6.0",
"next-ssr-middleware": "^1.1.0",
"nodemailer": "^8.0.7",
"open-react-map": "^0.9.1",
"react": "^19.2.5",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.2.5",
"react-typed-component": "^1.0.6",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.2.0",
"web-utility": "^4.6.5",
"yaml": "^2.8.3"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/plugin-transform-typescript": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@cspell/eslint-plugin": "^10.0.0",
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "^16.2.4",
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/koa": "^3.0.2",
"@types/next-pwa": "^5.6.9",
"@types/node": "^24.12.2",
"@types/nodemailer": "^8.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.2.1",
"eslint-config-next": "^16.2.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"less": "^4.6.4",
"less-loader": "^12.3.2",
"lint-staged": "^16.4.0",
"next-with-less": "^3.0.1",
"prettier": "^3.8.3",
"prettier-plugin-css-order": "^2.2.0",
"sass": "^1.99.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.59.1"
},
"resolutions": {
"mobx-react-helper": "$mobx-react-helper",
"next": "$next"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"core-js",
"less",
"sharp",
"unrs-resolver"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 100,
"plugins": [
"prettier-plugin-css-order",
"@softonus/prettier-plugin-duplicate-remover"
]
},
"lint-staged": {
"*.{html,md,less,json,yml,js,mjs,ts,tsx}": "prettier --write"
}
}