-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 830 Bytes
/
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
{
"name": "auth-typescript-template",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"auth-typescript-template": "bin/auth.ts"
},
"scripts": {
"start": "node dist/index.js",
"postinstall": "echo 'Please set up your .env file with MONGO_URI and JWT_SECRET'",
"build": "tsc"
},
"keywords": [
"auth",
"typescript",
"template",
"authentication",
"jwt"
],
"publisher": "",
"repository": {
"type": "git",
"url": "git+https://github.com/Avik-creator/auth-typescript-template-package.git"
},
"author": "Avik Mukherjee",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.3.0",
"typescript": "^5.5.4"
},
"dependencies": {
"fs-extra": "^11.2.0"
}
}