-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"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/giabao2000/nodejs_blog.git"
},
"keywords": [
"blog"
],
"author": "Đinh Gia Bảo",
"license": "ISC",
"bugs": {
"url": "https://github.com/giabao2000/nodejs_blog/issues"
},
"homepage": "https://github.com/giabao2000/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.17.1",
"express-handlebars": "^5.3.3",
"node-sass": "^6.0.1"
},
"devDependencies": {
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
}
}