-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "auth-token-express",
"version": "1.0.4",
"description": "Module for access and refresh token",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --config \"./utils/nodemon.json\"/",
"build": "rm -rf ./build/ && tsc",
"start": "node build/start.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"example/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "riazosama",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:riazosama/auth-token.git"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"redis": "^2.8.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.3.6",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5",
"@types/redis": "^2.8.14"
}
}