forked from davedawkins/Sutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.3 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
{
"repository": {
"url": "https://github.com/davedawkins/Sutil.git"
},
"private": true,
"scripts": {
"postinstall": "dotnet tool restore",
"watch:tests": "dotnet fable watch tests -o dist/tests --runWatch mocha dist/tests -r esm",
"pretests": "dotnet fable tests -o dist/tests",
"publish": "node publish.js",
"publish:package": "dotnet fsi build.fsx publish",
"tests": "mocha dist/tests -r esm",
"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",
"start:e": "dotnet fable watch src/AppUsingEngine --run webpack serve --config webpack.e.js",
"build:e": "dotnet fable src/AppUsingEngine --run webpack --config webpack.e.js --mode production"
},
"dependencies": {
"d3-scale": "^3.2.3",
"gh-pages": "^3.1.0",
"github-api": "^3.4.0",
"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.0.0"
}
}