forked from toomuchdesign/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
54
55
56
57
58
59
60
61
{
"name": "raulgonzalez.vercel.app",
"description": "Personal website 2022",
"author": "Raúl González",
"repository": "https://github.com/gqcrytoraul/website.git",
"homepage": "http://www.raulgonzalez.vercel.app",
"version": "1.0.0",
"scripts": {
"start": "netlify dev",
"start:page": "grunt sync",
"build": "npm run build:page && npm run build:functions",
"build:page": "grunt build",
"build:functions": "netlify-lambda build functions",
"preversion": "npm test",
"version": "git add package.json",
"postversion": "git push && git push --tags",
"format": "prettier --write \"**/*.{js,html,css,less,md}\""
},
"engine": "node >= 12",
"dependencies": {
"@sendgrid/mail": "^7.4.0",
"autoprefixer": "^9.6.1",
"email-validator": "^2.0.4",
"grunt": "^1.0.4",
"grunt-browser-sync": "^2.1.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-imagemin": "^3.1.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-newer": "^1.3.0",
"grunt-postcss": "^0.9.0",
"imagemin-mozjpeg": "^8.0.0",
"lazysizes": "^5.1.0",
"load-grunt-tasks": "^5.0.0",
"netlify-cli": "^2.68.0",
"netlify-lambda": "^2.0.1",
"normalize.css": "^8.0.1",
"smooth-scroll": "^16.1.0"
},
"devDependencies": {
"husky": "^3.0.0",
"lint-staged": "^9.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,html,css,less,md}": [
"prettier --write",
"git add"
]
}
}