-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
25 lines (25 loc) · 981 Bytes
/
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
{
"private": true,
"type": "module",
"scripts": {
"start": "dotnet fable watch ./Documentation -o ./public --sourceMaps --run vite serve",
"build": "dotnet fable ./Documentation -o ./public --run vite build",
"preview": "npm run build && vite preview",
"test": "dotnet fable ./tests -o ./public/tests --noCache --run node ./public/tests/Tests.js",
"watch-test": "dotnet fable watch ./Tests -o ./public/tests --run nodemon ./public/tests/Tests.js",
"clean": "rm -rf public/fss. public/tests public/*.js public/Pages public/*.map public/dist public/fable_modules",
"publish-docs": "npm run clean && npm run build && gh-pages -d public/dist"
},
"homepage": "https://Bjorn-Strom.github.io/FSS",
"devDependencies": {
"gh-pages": "^6.1.1",
"nodemon": "^3.1.0",
"vite": "^5.2.4"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0"
}
}