generated from idea2app/Next-Bootstrap-ts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.28 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
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
{
"name": "@kaiyuanshe/oss-toolbox",
"version": "1.7.0",
"description": "React project scaffold based on TypeScript, Next.js, Bootstrap & Workbox.",
"private": true,
"engines": {
"node": ">=22"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.6",
"@sentry/nextjs": "^8.53.0",
"@swc/helpers": "^0.5.15",
"classnames": "^2.5.1",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.40.0",
"file-type": "^20.0.1",
"idea-react": "^2.0.0-rc.8",
"koajax": "^3.1.1",
"less": "^4.2.2",
"less-loader": "^12.2.0",
"license-filter": "^0.2.4",
"lodash": "^4.17.21",
"markdown-ime": "^1.0.3",
"marked": "^15.0.6",
"mobx": "^6.13.6",
"mobx-github": "^0.3.5",
"mobx-i18n": "^0.6.0",
"mobx-react": "^9.2.0",
"mobx-restful": "^2.1.0",
"mobx-restful-table": "^2.0.1",
"next": "^15.1.6",
"next-pwa": "~5.6.0",
"next-ssr-middleware": "^0.8.9",
"next-with-less": "^3.0.1",
"primereact": "^10.9.2",
"react": "^18.3.1",
"react-bootstrap": "^2.10.9",
"react-bootstrap-editor": "^2.0.4",
"react-dom": "^18.3.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"styled-jsx": "^5.1.6",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"web-utility": "^4.4.2",
"webpack": "^5.97.1",
"yaml": "^2.7.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-transform-typescript": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__eslintrc": "^2.1.2",
"@types/lodash": "^4.17.15",
"@types/next-pwa": "^5.6.9",
"@types/node": "^22.13.0",
"@types/react": "^18.3.18",
"@types/turndown": "^5.0.5",
"eslint": "^9.19.0",
"eslint-config-next": "^15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"get-git-folder": "^0.1.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-css-order": "^2.1.2",
"typescript": "~5.7.3",
"typescript-eslint": "^8.22.0"
},
"resolutions": {
"@types/node": "$@types/node",
"next": "$next"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid",
"plugins": [
"prettier-plugin-css-order",
"@softonus/prettier-plugin-duplicate-remover"
]
},
"lint-staged": {
"*.{html,md,less,json,yml,js,mjs,ts,tsx}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"install": "get-git-folder https://github.com/kaiyuanshe/service-configuration main OSS-toolbox || true",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix && git add .",
"test": "lint-staged && npm run lint && tsc --noEmit",
"pack-image": "docker build -t kaiyuanshe/oss-toolbox:latest .",
"container": "docker rm -f oss-toolbox && docker run --name oss-toolbox -p 3000:3000 -d kaiyuanshe/oss-toolbox:latest"
}
}