forked from fable-compiler/fable-compiler.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.36 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
{
"private": true,
"scripts": {
"postinstall": "dotnet tool restore && dotnet paket restore",
"start-sass": "npm run build-sass && npm run build-sass -- --watch",
"build-sass": "sass src/styles/main.scss deploy/css/styles.css",
"start-docs": "nacara --watch",
"build-docs": "nacara",
"start-fable": "fable-splitter src/App.fsproj -o build --watch --run",
"build-fable": "fable-splitter src/App.fsproj -o build --run",
"build-fast-fable": "node build/Main.js",
"start-server": "live-server deploy --port=8000 --no-browser",
"start": "concurrently npm:start-*",
"build": "npx rimraf deploy && concurrently npm:build-*",
"deploy": "npm run build && gh-pages -d deploy -b master",
"deploy-fast": "npm run build-fast && gh-pages -d deploy -b master"
},
"dependencies": {
"@babel/core": "^7.8.4",
"bulma": "^0.8.0",
"concurrently": "^5.1.0",
"fable-compiler": "^2.4.16",
"fable-splitter": "^2.1.12",
"fs-extra": "^8.1.0",
"gh-pages": "^2.2.0",
"highlight.js": "^9.18.1",
"live-server": "^1.2.1",
"marked": "^0.8.0",
"nacara": "^0.2.1",
"prismjs": "^1.21.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.2",
"sass": "^1.26.1"
}
}