-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "node-auth",
"version": "1.0",
"description": "Node server serving as REST API with authentication",
"main": "index.js",
"repository": "[email protected]:Devin-GPT/node-auth.git",
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && tsc",
"dev": "nodemon",
"debug": "NODE_ENV=debug nodemon --inspect=0.0.0.0:9229 src/index.ts",
"start": "node dist/index.js",
"lint": "eslint 'src/**/*.{js,ts}' --fix",
"format": "prettier --write 'src/**/*.{js,ts,json,css,md}'",
"cleanup": "yarn lint && yarn format",
"prepare": "husky"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"husky": "^9.0.11",
"nodemon": "^3.0.2",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "*"
},
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"mongoose": "^8.0.3"
}
}