-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"beautiful": "lint-staged",
"start": "nodemon --inspect src/index.js",
"watch": "node-sass --watch src/resources/scss/ --output src/public/css/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Linhvjc/nodejs_blog.git"
},
"keywords": [
"f8",
"blog",
"f8",
"nodejs",
"nodejs"
],
"author": "linhphan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Linhvjc/nodejs_blog/issues"
},
"homepage": "https://github.com/Linhvjc/nodejs_blog#readme",
"lint-staged": {
"src/**/*.{js,json,scss}": "prettier --single-quote --trailing-comma all --tab-width 4 --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"express": "^4.18.1",
"method-override": "^3.0.0",
"mongoose": "^6.6.0",
"mongoose-delete": "^0.5.4",
"mongoose-slug-generator": "^1.0.4",
"morgan": "^1.10.0"
},
"devDependencies": {
"express-handlebars": "^6.0.6",
"husky": "^4.2.5",
"lint-staged": "^13.0.3",
"node-sass": "^7.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
}
}