-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 929 Bytes
/
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
{
"name": "upspeak",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "npx eleventy --serve | gulp watch",
"build": "cross-env NODE_ENV=production eleventy && cross-env NODE_ENV=production gulp build",
"format": "prettier --write ."
},
"keywords": [],
"author": "Quentin Bellanger",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"cross-env": "^7.0.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-if": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"html-minifier": "^4.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}