-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "lua_for_sm5",
"version": "0.1.0",
"private": true,
"browserslist": [
"defaults"
],
"dependencies": {
"@popperjs/core": "^2.11.8",
"@primer/octicons-react": "^19.14.0",
"bootstrap": "^5.3.5",
"gh-pages": "^6.3.0",
"highlight.js": "^11.11.1",
"html-react-parser": "^5.2.3",
"jquery": "^3.7.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.5.2"
},
"scripts": {
"start": "npm run watch-local-changes | vite",
"build": "npm run convert-pages && sass src/_styles && vite build",
"deploy": "gh-pages -d dist",
"predeploy": "npm run build",
"convert-pages": "node src/html-to-json.js",
"watch-local-changes": "npm run convert-pages && chokidar \"src/Pages/**/*.html\" -c \"npm run convert-pages\" & sass --watch src/_styles/"
},
"homepage": "https://quietly-turning.github.io/Lua-For-SM5/",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@vitejs/plugin-react": "^4.7.0",
"chokidar-cli": "^3.0.0",
"recursive-readdir": "^2.2.3",
"sass": "^1.87.0",
"vite": "^7.0.6"
}
}