Skip to content

Commit 82ffc7f

Browse files
ぺやんぐのセキュリティ事例問題集つくったよ (github#32)
2 parents 78d789b + e05cc4c commit 82ffc7f

File tree

13 files changed

+1372
-3
lines changed

13 files changed

+1372
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ fabric.properties
2626
/src/pages/private/pages/*.raw.html
2727
/src/pages/private/pages/.gitignore
2828
/src/pages/private/pages/.git/**
29+
/src/pages/sc-problems/**
30+
!/src/pages/sc-problems/index.html
31+
/src/public/api/sc-problems.json
2932

3033
/node_modules
3134
/dist

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"format": "prettier --write --cache .",
1414
"lint": "eslint --cache .",
1515
"lint:sarif": "eslint --cache . -f node_modules/@microsoft/eslint-formatter-sarif/sarif.js -o results.sarif || true",
16-
"build": "vite build",
17-
"dev": "vite",
16+
"build": "tsx src/sc-problem-generator.ts && vite build",
17+
"dev": "pnpm build && pnpm preview",
1818
"preview": "vite preview"
1919
},
2020
"repository": {
@@ -29,6 +29,7 @@
2929
"homepage": "https://github.com/PeyaPeyaPeyang/HomePage#readme",
3030
"dependencies": {
3131
"@justinribeiro/lite-youtube": "^1.5.0",
32+
"@fontsource/jetbrains-mono": "^5.0.20",
3233
"crypto-js": "^4.2.0",
3334
"sweetalert2": "^11.10.7"
3435
},
@@ -56,11 +57,16 @@
5657
"rollup": "^4.14.0",
5758
"simple-git-hooks": "^2.11.1",
5859
"typescript": "^5.4.3",
60+
"tsx": "^4.16.5",
5961
"vite": "3.2.7",
6062
"vite-plugin-checker": "0.6.2",
6163
"vite-plugin-handlebars": "1.6.0",
6264
"vite-plugin-minify": "1.5.2",
63-
"vite-tsconfig-paths": "3.6.0"
65+
"vite-tsconfig-paths": "3.6.0",
66+
"marked": "^14.0.0",
67+
"marked-highlight": "^2.1.4",
68+
"highlight.js": "^11.10.0",
69+
"gray-matter": "^4.0.3"
6470
},
6571
"lint-staged": {
6672
"*": [

0 commit comments

Comments
 (0)