-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 894 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
26
27
28
29
{
"name": "fable3-nodejs-example",
"version": "0.1.0",
"description": "Test fable 3 with nodejs",
"main": "App.js",
"scripts": {
"build-es6": "fable fsharp/WebApp/WebApp.fsproj -o es6",
"build-commonjs": "npm run-script build-es6 && babel es6 -d commonjs/unbundled --plugins=@babel/transform-modules-commonjs",
"build-commonjs-bundle": "npm run-script build-es6 && babel es6 --out-file commonjs/bundled/App.js --plugins=@babel/transform-modules-commonjs",
"test": "node commonjs/unbundled/App.js",
"test-bundled": "node commonjs/bundled/App.js"
},
"keywords": [
"fable",
"f#",
"fsharp",
"babel"
],
"dependencies": {
"express": "^4.17.1"
},
"author": "Shroomander",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/plugin-transform-modules-commonjs": "^7.14.0"
}
}