forked from Open-Source-Bazaar/Open-Source-Bazaar.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.78 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.78 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
{
"name": "@open-source-bazaar/web-site",
"version": "1.0.0",
"description": "Open Source Bazaar web-site",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix && git add . && tsc --noEmit",
"test": "lint-staged && npm run lint"
},
"dependencies": {
"@koa/router": "^13.1.1",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.5",
"core-js": "^3.44.0",
"file-type": "^21.0.0",
"idea-react": "^2.0.0-rc.13",
"koa": "^2.16.1",
"koajax": "^3.1.2",
"license-filter": "^0.2.5",
"marked": "^16.0.0",
"mime": "^4.0.7",
"mobx": "^6.13.7",
"mobx-github": "^0.3.11",
"mobx-i18n": "^0.7.1",
"mobx-lark": "^2.2.0",
"mobx-react": "^9.2.0",
"mobx-react-helper": "^0.5.1",
"mobx-restful": "^2.1.0",
"mobx-restful-table": "^2.5.2",
"next": "^15.3.5",
"next-pwa": "^5.6.0",
"next-ssr-middleware": "^1.0.1",
"react": "^19.1.0",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.1.0",
"react-typed-component": "^1.0.6",
"undici": "^7.11.0",
"web-utility": "^4.4.3"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/plugin-transform-typescript": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@cspell/eslint-plugin": "^9.1.5",
"@eslint/js": "^9.31.0",
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
"@stylistic/eslint-plugin": "^5.1.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/koa": "^2.15.0",
"@types/koa__router": "^12.0.4",
"@types/next-pwa": "^5.6.9",
"@types/node": "^22.16.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "^9.31.0",
"eslint-config-next": "^15.3.5",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"less": "^4.3.0",
"less-loader": "^12.3.0",
"lint-staged": "^16.1.2",
"next-with-less": "^3.0.1",
"prettier": "^3.6.2",
"prettier-plugin-css-order": "^2.1.2",
"sass": "^1.89.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.36.0"
},
"resolutions": {
"next": "$next"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"core-js",
"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,scss,json,yml,js,mjs,ts,tsx}": "prettier --write"
}
}