-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.72 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.72 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
{
"name": "@freecodecamp-chengdu/hop",
"version": "3.0.0-rc",
"description": "Open-source Hackathon Platform with Git-based Cloud Development Environment",
"private": true,
"engines": {
"node": ">=20"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.6",
"@giscus/react": "^3.1.0",
"@sentry/nextjs": "^10.51.0",
"array-unique-proposal": "^0.3.4",
"classnames": "^2.5.1",
"echarts-jsx": "^0.6.0",
"idb-keyval": "^6.2.2",
"idea-react": "^2.2.2",
"jsonwebtoken": "^9.0.3",
"koa": "^3.2.0",
"koa-jwt": "^4.0.4",
"koajax": "^3.3.0",
"leaflet": "^1.9.4",
"leaflet.chinatmsproviders": "^3.0.6",
"mobx": "^6.15.0",
"mobx-github": "^0.6.2",
"mobx-i18n": "^0.7.2",
"mobx-react": "^9.2.1",
"mobx-react-helper": "^0.5.1",
"mobx-restful": "^2.1.4",
"mobx-restful-table": "^2.6.3",
"next": "^16.2.4",
"next-ssr-middleware": "^1.1.0",
"open-react-map": "^0.9.1",
"react": "^19.2.5",
"react-bootstrap": "^2.10.10",
"react-bootstrap-editor": "^2.1.1",
"react-dom": "^19.2.5",
"react-leaflet": "^5.0.0",
"web-utility": "^4.6.6"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@biomejs/biome": "^2.4.14",
"@freecodecamp-chengdu/hop-service": "^1.0.0-rc.1",
"@octokit/openapi-types": "^27.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/koa": "^3.0.2",
"@types/leaflet": "^1.9.21",
"@types/next-pwa": "^5.6.9",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"git-utility": "^0.3.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"less": "^4.6.4",
"less-loader": "^12.3.2",
"lint-staged": "^16.4.0",
"next-pwa": "^5.6.0",
"next-with-less": "^3.0.1",
"typescript": "~5.9.3",
"webpack": "^5.106.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@sentry/cli",
"less",
"sharp",
"unrs-resolver"
]
},
"resolutions": {
"next": "$next"
},
"lint-staged": {
"*.{html,md,less,json,yml,js,ts,tsx}": "biome check --write"
},
"scripts": {
"prepare": "husky || true",
"install": "xgit download https://github.com/FreeCodeCamp-Chengdu/key-vault main HOP || true",
"postinstall": "next typegen",
"dev": "next dev --webpack",
"build": "rm -rf .next && next build --webpack",
"start": "next start",
"test": "lint-staged && tsc --noEmit"
}
}