-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "fp-ts-http",
"version": "0.0.2",
"description": "Opinionated Typesafe http middleware library using fp-ts-routing and io-ts",
"keywords": [
"functional",
"typesafe",
"http",
"rest",
"routing",
"fp-ts",
"fp-ts-routing",
"io-ts"
],
"files": [
"lib",
"es6"
],
"typings": "lib/index.d.ts",
"main": "lib/index.js",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.test.ts' --exec 'ts-node' src/test.ts -- --experimental-modules",
"build:watch": "concurrently 'npm run build:lib:watch' 'npm run build:es6:watch'",
"build": "npm run clean && concurrently 'npm run build:lib' 'npm run build:es6'",
"build:lib": "tsc",
"build:es6": "tsc -p tsconfig.es6.json",
"build:lib:watch": "tsc --watch",
"build:es6:watch": "tsc --watch -p tsconfig.es6.json",
"clean": "rimraf lib/* es6/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gorillatron/fp-ts-http.git"
},
"authors": "Jørn Andre Tangen @gorillatron",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorillatron/fp-ts-http/issues"
},
"homepage": "https://github.com/gorillatron/fp-ts-http#readme",
"devDependencies": {
"@types/lodash.chunk": "^4.2.6",
"@types/node": "^12.0.10",
"@types/request-promise": "^4.1.44",
"artillery": "^1.6.0-28",
"bluebird": "^3.5.5",
"concurrently": "^4.1.1",
"lodash.chunk": "^4.2.0",
"nodemon": "^1.19.1",
"renamer": "^1.1.2",
"request-promise": "^4.2.4",
"rimraf": "^2.6.3",
"typescript": "^3.5.2"
},
"dependencies": {
"@most/adapter": "^1.0.0",
"@most/core": "^1.4.2",
"@most/types": "^1.0.1",
"@types/koa": "^2.0.48",
"@types/koa-compose": "^3.2.4",
"fp-ts": "^1.19.1",
"fp-ts-most": "^0.2.1",
"fp-ts-routing": "^0.4.3",
"io-ts": "^1.10.2",
"io-ts-reporters": "0.0.21",
"koa": "^2.7.0",
"koa-body": "^4.1.0",
"koa-compose": "^4.1.0"
}
}