-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
38 lines (38 loc) · 1.34 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
37
38
{
"repository": {
"url": "https://github.com/davedawkins/Sutil.git"
},
"private": true,
"scripts": {
"postinstall": "dotnet tool restore",
"publish:package": "bash build.sh publish:package",
"build:samples": "bash build.sh samples",
"start": "dotnet fable watch src/App --run webpack serve",
"build": "dotnet fable src/App --run webpack --mode production",
"watch:devtools": "dotnet fable watch src/DevTools --runWatch webpack --config webpack.devtools.js",
"build:devtools": "dotnet fable src/DevTools --run webpack --config webpack.devtools.js",
"fsdocs": "bash build.sh fsdocs",
"fsdocs:local": "bash build.sh fsdocs --local",
"xdeploy:linode": "bash deployToLinode.sh ./public sutil '' [email protected] /home/deploy/apps",
"deploy:linode": "bash build.sh deploy:linode",
"clean": "bash build.sh clean",
"pack": "bash build.sh pack",
"test": "cd tests; npm run test"
},
"dependencies": {
"copy-webpack-plugin": "^11.0.0",
"d3-scale": "^3.2.3",
"gh-pages": "^3.1.0",
"github-api": "^3.4.0",
"lz-string": "^1.4.4",
"mobile-drag-drop": "^2.3.0-rc.2",
"mocha": "^8.2.1",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"esm": "^3.2.25",
"fable-publish-utils": "^2.2.0"
}
}