-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "back-end",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "nodemon --inspect src/index.js",
"beautiful": "prettier --single-quote --trailing-comma all --tab-width 4 --write ./src/**/*.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/Mrtrieu69/nodejs.git"
},
"keywords": [
"blog",
"nodejs"
],
"author": "Tam",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mrtrieu69/nodejs/issues"
},
"homepage": "https://github.com/Mrtrieu69/nodejs#readme",
"dependencies": {
"express": "^4.17.2",
"express-handlebars": "^5.3.4",
"method-override": "^3.0.0",
"mongoose": "^6.1.4",
"mongoose-delete": "^0.5.4",
"mongoose-sequence": "^5.3.1",
"mongoose-slug-generator": "^1.0.4",
"morgan": "^1.10.0"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"node-sass": "^7.0.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}