-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.76 KB
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
{
"name": "node-auth",
"version": "1.0.0",
"author": "nnishimura",
"description": "Nodejs JWT auth provider",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"dev": "nodemon",
"db:client:generate": "prisma generate",
"db:migrate:deploy": "prisma migrate deploy",
"start": "node ./dist/index.js",
"test": "NODE_ENV=test jest --runInBand --forceExit --coverage --detectOpenHandles",
"test:unit": "NODE_ENV=test jest tests/unit --runInBand --forceExit",
"test:integration": "NODE_ENV=test jest tests/integration --runInBand --forceExit"
},
"dependencies": {
"@prisma/client": "^3.6.0",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"celebrate": "^13.0.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.6",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.3",
"jest": "^26.4.2",
"jest-date-mock": "^1.0.8",
"jest-mock-extended": "^2.0.4",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"prisma": "^3.6.0",
"supertest": "^6.1.6",
"ts-jest": "^26.5.6",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.12.0",
"tslint": "^6.1.3",
"typescript": "^4.1.0"
}
}