-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.32 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
{
"name": "jwt-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsc-watch --onSuccess 'node build/app.js'",
"build": "tsc",
"start": "node build/app.js",
"test": "jest --watchAll",
"test-watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmotta23/jwt-service.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gmotta23/jwt-service/issues"
},
"homepage": "https://github.com/gmotta23/jwt-service#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^15.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"redis": "^4.1.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.13",
"@types/redis": "^4.0.11",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"supertest": "^6.2.2",
"ts-jest": "^28.0.5",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.5"
}
}