-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "conduit.purs",
"version": "1.0.0",
"description": "Conduit front-end implementation in Purescript",
"private": true,
"directories": {
"test": "test"
},
"scripts": {
"check": "spago build",
"check:watch": "spago build --watch",
"test": "spago test --main Test.Main",
"build": "webpack --config webpack.prod.js",
"serve": "webpack-dev-server --config webpack.dev.js --open",
"build:dev": "webpack --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/de-passage/conduit.purs.git"
},
"keywords": [
"purescript",
"conduit",
"front-end"
],
"author": "Sylvain Leclercq",
"license": "MIT",
"bugs": {
"url": "https://github.com/de-passage/conduit.purs/issues"
},
"homepage": "https://github.com/de-passage/conduit.purs#readme",
"dependencies": {
"marked": "^4.0.10",
"purs-loader": "^3.7.1",
"simplemde": "^1.11.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"webpack-dev-server": "^4.11.1"
}
}