-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "myshkin451blog",
"version": "1.0.0",
"description": "test",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"init-db": "node scripts/init-db.js",
"health-check": "node scripts/health-check.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Achernar-Eridani/Myshkin451-blog.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Achernar-Eridani/Myshkin451-blog/issues"
},
"homepage": "https://github.com/Achernar-Eridani/Myshkin451-blog#readme",
"dependencies": {
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"express-rate-limit": "^8.3.1",
"express-validator": "^7.3.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.2",
"mysql2": "^3.14.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"sanitize-html": "^2.17.2",
"sequelize": "^6.37.7",
"sequelize-cli": "^6.6.2",
"slugify": "^1.6.6"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css}": [
"prettier --write"
],
"client/**/*.{js,vue}": [
"eslint --fix --config client/eslint.config.mjs",
"prettier --write"
]
}
}