-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "real-world-fable",
"version": "1.0.0",
"description": "> ### Fable and F# codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.",
"main": "webpack.config.js",
"dependencies": {
"markdown": "^0.5.0",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.3.4",
"fable-compiler": "^2.4.7",
"fable-loader": "^2.1.8",
"fable-splitter": "^2.1.11",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
},
"scripts": {
"start": "webpack-dev-server",
"postinstall": "dotnet restore src/RealWorldFable.fsproj",
"build": "npm test && webpack",
"pretest": "fable-splitter tests -o build --commonjs",
"test": "mocha build -t 10000",
"test:watch": "rm -rf build && npm run pretest && npm-run-all --parallel watch:*",
"watch:pretest": "fable-splitter tests -o build --commonjs -w",
"watch:test": "mocha build --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thitemple/realworld-fsharp-fable.git"
},
"keywords": [
"F#",
"fsharp",
"fable",
"elmish",
"react",
"real world"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thitemple/realworld-fsharp-fable/issues"
},
"homepage": "https://github.com/thitemple/realworld-fsharp-fable#readme"
}