-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "pot",
"version": "1.0.0",
"description": "Our back-end that powers the Zleed API.",
"main": "build/index.js",
"scripts": {
"start": "node -r dotenv/config -r tsconfig-paths/register .",
"build": "tsc",
"dev": "nodemon -r dotenv/config -r tsconfig-paths/register src/index.ts",
"lint": "eslint",
"fix": "eslint --fix",
"swagger": "ts-node -r dotenv/config -r tsconfig-paths/register src/swagger/generate.ts",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/express-ws": "^3.0.4",
"@types/jsonwebtoken": "^9.0.6",
"dotenv": "^16.4.5",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.8.0",
"husky": "^9.1.2",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"prettier": "3.3.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"chalk": "4",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.1",
"nodejs-snowflake": "^2.0.1",
"sqlite3": "^5.1.7"
},
"lint-staged": {
"**/*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
}
}