-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "mangadb-client",
"version": "1.2.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"lint": "clear && eslint . || true",
"lint-fix": "clear && eslint --fix . || true",
"prettier": "clear && prettier --write \"**/*.js\""
},
"dependencies": {
"body-parser": "^1.20.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"morgan": "^1.10.0",
"node-sass-middleware": "^1.0.1",
"pug": "^3.0.2",
"request": "^2.88.0",
"serve-favicon": "^2.5.0",
"underscore.string": "^3.3.6"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"browser-sync": "^2.27.11",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-minify": "^3.1.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}