-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.96 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.96 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": "react-mobx-bootstrap-ts",
"version": "1.1.0",
"description": "React project scaffold based on TypeScript, MobX & Bootstrap, which is inspired by WebCell scaffold.",
"author": "shiy2008@gmail.com",
"dependencies": {
"@editorjs/code": "^2.9.3",
"@editorjs/editorjs": "^2.31.0",
"@editorjs/header": "^2.8.8",
"@editorjs/image": "^2.10.3",
"@editorjs/link": "^2.6.2",
"@editorjs/list": "^2.0.9",
"@editorjs/paragraph": "^2.11.7",
"@editorjs/quote": "^2.7.6",
"browser-fs-access": "^0.38.0",
"browser-unhandled-rejection": "^1.0.2",
"echarts-jsx": "^1.3.1",
"editorjs-html": "^4.0.5",
"idea-react": "^2.0.0-rc.13",
"koajax": "^3.1.2",
"lodash": "^4.17.21",
"mobx": "^6.15.0",
"mobx-downloader": "^0.3.1",
"mobx-github": "^0.6.2",
"mobx-i18n": "^0.7.2",
"mobx-react": "^9.2.1",
"mobx-restful": "^2.1.4",
"mobx-restful-table": "^2.5.5",
"preact": "^10.27.2",
"react": "npm:@preact/compat",
"react-bootstrap": "^2.10.10",
"react-bootstrap-editor": "^2.1.1",
"react-dom": "npm:@preact/compat",
"react-editor-js": "^2.1.0",
"react-router-class-tools": "^0.2.1",
"react-router-dom": "^7.9.6",
"web-utility": "^4.6.4"
},
"devDependencies": {
"@babel/runtime": "^7.28.4",
"@cspell/eslint-plugin": "^9.3.2",
"@eslint/js": "^9.39.1",
"@parcel/config-default": "~2.16.1",
"@parcel/packager-raw-url": "~2.16.1",
"@parcel/transformer-less": "~2.16.1",
"@parcel/transformer-typescript-tsc": "~2.16.1",
"@parcel/transformer-webmanifest": "~2.16.1",
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
"@types/eslint-config-prettier": "^6.11.3",
"@types/lodash": "^4.17.21",
"@types/node": "^22.19.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"buffer": "^6.0.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-spellcheck": "^0.0.20",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"parcel": "~2.16.1",
"parcel-transformer-mdx": "^0.4.2",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-css-order": "2.1.2",
"prismjs": "^1.30.0",
"process": "^0.11.10",
"typescript": "~5.9.3",
"typescript-eslint": "^8.47.0",
"workbox-cli": "^7.4.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"lmdb",
"msgpackr-extract"
]
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat",
"react/jsx-runtime": "preact/jsx-runtime"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4,
"plugins": [
"prettier-plugin-css-order",
"@softonus/prettier-plugin-duplicate-remover"
]
},
"lint-staged": {
"*.{html,md,less,json,yml,js,mjs,ts,tsx}": "prettier --write",
"*.{js,mjs,ts,tsx}": "eslint --fix"
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"@parcel/resolver-default": {
"packageExports": true
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"clean": "rm -rf .parcel-cache/ dist/",
"start": "npm run clean && parcel src/index.html",
"pack": "npm run clean && parcel build src/index.html --public-url .",
"build": "npm run pack && workbox generateSW"
}
}