This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "digital-homework-book-backend",
"version": "0.0.1",
"description": "The backend for a digital and collaborative homework book",
"main": "index.ts",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "nodemon dist/index.js",
"build:watch": "tsc -w",
"format": "prettier --write \"src/**/*.ts\"",
"document": "apidoc -i src/ -o docs/ -c apidoc.json -e node_modules/",
"prebuild": "npm run format && npm run document",
"serve:docs": "node dist/docs.js",
"test": "vitest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/Dlurak/dloolBackend"
},
"keywords": [
"digital",
"backend",
"mongodb",
"express",
"homework",
"colloborative",
"decentralized"
],
"author": "Dlurak",
"license": "GPL-2.0-only",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ical-generator": "^5.0.0",
"jsonwebtoken": "^9.0.1",
"mongodb": "^5.8.0",
"todo.txt": "^0.0.2",
"xml-formatter": "^3.5.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/luxon": "^3.3.1",
"@types/node": "^20.4.10",
"apidoc": "^1.1.0",
"dayjs": "^1.11.9",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"rrule": "^2.7.2",
"typescript": "^5.1.6",
"vitest": "^0.34.6",
"husky": "^8.0.0"
}
}