-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "arktech-links-backend",
"version": "0.0.0",
"main": "src/app.js",
"scripts": {
"start": "tsx src/app.js",
"dev": "tsx watch -r dotenv/config src/app.ts dotenv_config_path=./.env.development",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"type": "module",
"keywords": [],
"license": "AGPL-3.0-only",
"dependencies": {
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"fs": "^0.0.1-security",
"http": "^0.0.1-security",
"http-errors": "^2.0.0",
"mongoose": "^8.5.2",
"morgan": "^1.10.0",
"nanoid": "^5.0.7",
"path": "^0.12.7"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/mongoose": "^5.11.96",
"@types/morgan": "^1.9.9",
"@types/nanoid": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"dotenv": "^16.4.5",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"tsx": "^4.16.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
}
}