-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "nodejs-auth",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"format": "prettier --write ./src",
"compile": "npx tsc -p ./tsconfig.build.json",
"api": "NODE_ENV=dev npx nodemon ./dist/api/server.js | npx pino-pretty"
},
"keywords": [],
"author": "Mgr. Šimon Libiger, MPA",
"license": "ISC",
"type": "module",
"engines": {
"node": "~20.18.0"
},
"directories": {
"doc": "docs"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"bcrypt": "^6.0.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"got": "^14.4.7",
"jsonwebtoken": "^9.0.2",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.2",
"@types/got": "^9.6.12",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.23",
"@types/typescript": "^0.4.29",
"husky": "^8.0.3",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}