-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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": "@blendsdk/express",
"version": "0.9.22",
"description": "A TypeScript library of utility and helpers to be used in an express application",
"main": "dist/index.js",
"author": "Gevik Babakhani <gevikb@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/blendsdk/express.git"
},
"keywords": [
"http",
"express"
],
"license": "MIT",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -fR ./dist && tsc",
"watch": "rm -fR ./dist && tsc -w ",
"fiddle": "node ./dist/fiddle.js",
"test": "jest --detectOpenHandles",
"patch-publish": "is_git_branch master && is_git_clean && yarn build && yarn publish --patch --access public && git push origin master --tags"
},
"dependencies": {
"@blendsdk/stdlib": "^1.0.5",
"@types/jsonwebtoken": "^8.3.3",
"@types/node": "^12.6.1",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"jsonwebtoken": "^8.5.1",
"tslib": "^1.10.0",
"typescript": "^3.5.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@blendsdk/git": "^1.0.3",
"@types/express": "^4.17.0",
"@types/express-session": "^1.15.13",
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"ts-jest": "^24.0.2"
}
}