-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "@constlab/vesper-jwt-auth",
"version": "0.1.0",
"description": "vesper + jwt auth",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"doc": "typedoc --out docs/src/ --readme ./README.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"sample": "NODE_ENV=dev ts-node-dev sample/index.ts",
"build": "NODE_ENV=prod rm -rf dist/* && tsc && (cd src/ && find . -name '*.gql' | cpio -pdm ../dist/)",
"test": "echo \"No test specified\" && exit 0",
"clean-publish": "clean-publish",
"lint:fix": "tslint --fix --project tsconfig.json",
"lint": "tslint --project tsconfig.json --config tslint.json -t verbose"
},
"keywords": [
"vesper",
"graphql",
"jwt",
"node",
"typescript"
],
"author": {
"name": "Ivan Kalinichenko",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/constlab/vesper-jwt-auth.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/constlab/vesper-jwt-auth/issues"
},
"homepage": "https://github.com/constlab/vesper-jwt-auth",
"dependencies": {
"bcryptjs": "^2.4.3",
"class-validator": "^0.9.1",
"jsonwebtoken": "^8.5.1",
"lodash": ">=4.17.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^7.2.8",
"@types/node": "^10.14.6",
"clean-publish": "^1.1.2",
"conventional-changelog-cli": "^2.0.21",
"sqlite3": "^4.0.6",
"ts-node-dev": "^1.0.0-pre.35",
"tslint": "^5.16.0",
"typedoc": "^0.14.2",
"typescript": "^3.4.5",
"vesper": "^0.1.9"
}
}