-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 749 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 749 Bytes
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
{
"name": "funky-http",
"version": "0.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jacob Jonsson",
"license": "MIT",
"files": [
"dist",
"package.json"
],
"scripts": {
"prepublish": "yarn build",
"watch": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"build": "tsc"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/qs": "^6.9.5",
"@types/ramda": "^0.27.34",
"fp-ts": "^2.9.3",
"nodemon": "^2.0.7",
"path-to-regexp": "^6.2.0",
"qs": "^6.9.4",
"ramda": "^0.27.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"fp-ts": "^2.9.3",
"path-to-regexp": "^6.2.0",
"qs": "^6.9.4",
"ramda": "^0.27.1"
}
}