generated from Louis3797/express-ts-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
94 lines (94 loc) · 3.07 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "express-ts-auth-service",
"version": "1.0.0",
"description": "A ready-to-use authentication service build with express.js, that provides secure and reliable authentication using JSON Web Tokens (JWT) and refresh token rotation",
"author": "Louis-Kaan Ay",
"license": "MIT",
"private": false,
"main": "./dist/index.js",
"type": "commonjs",
"scripts": {
"dev": "tsc --project './tsconfig.build.json' --watch && cross-env NODE_ENV=development nodemon --trace-warnings ./dist/index.js",
"build": "tsc --project './tsconfig.build.json'",
"start": "yarn run build && cross-env NODE_ENV=production node --trace-warnings ./dist/index.js",
"watch": "tsc --project './tsconfig.build.json' --watch",
"lint": "eslint src/**/*.ts __test__/**/*.test.ts",
"lint:fix": "eslint --fix --ext .",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check .",
"prettier:format:file": "prettier --write ",
"test": "jest",
"test:watch": "jest -i --watchAll",
"coverage": "jest -i --coverage",
"prepare": "husky install"
},
"dependencies": {
"@prisma/client": "^4.11.0",
"argon2": "^0.30.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"http-status": "^1.6.2",
"joi": "^17.8.4",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.9.1",
"ts-node": "^10.9.1",
"utility-types": "^3.10.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"xss": "^1.0.14"
},
"devDependencies": {
"@types/argon2": "^0.15.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/nodemailer": "^6.4.7",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"prisma": "^4.11.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "5.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Louis3797/express-ts-auth-service"
},
"bugs": {
"url": "https://github.com/Louis3797/express-ts-auth-service/issues"
},
"homepage": "https://github.com/Louis3797/express-ts-auth-service",
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
}
}