-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.5 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
{
"name": "andreacarraro.it",
"description": "Personal website 2015",
"author": "Andrea Carraro",
"repository": "https://github.com/toomuchdesign/website.git",
"homepage": "http://www.andreacarraro.it",
"version": "1.0.0",
"scripts": {
"start": "npx netlify dev",
"start:page": "grunt sync",
"build": "npx netlify build",
"build:page": "grunt build",
"prepare": "npx simple-git-hooks",
"version": "git add package.json",
"postversion": "git push && git push --tags",
"prettier:check": "prettier . --check",
"prettier:fix": "npm run prettier:check -- --write",
"source:check": "npm run prettier:check"
},
"simple-git-hooks": {
"pre-commit": "npm run source:check"
},
"dependencies": {
"@netlify/functions": "^2.8.2",
"@sendgrid/mail": "^8.1.3",
"email-validator": "^2.0.4",
"grunt": "^1.6.1",
"grunt-browser-sync": "^2.1.3",
"grunt-cli": "^1.5.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-imagemin": "^4.0.0",
"grunt-contrib-less": "^3.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-newer": "^1.3.0",
"imagemin-mozjpeg": "^9.0.0",
"lazysizes": "^5.3.2",
"load-grunt-tasks": "^5.1.0",
"netlify-cli": "^17.36.4",
"normalize.css": "^8.0.1",
"smooth-scroll": "^16.1.3"
},
"devDependencies": {
"@types/node": "^22.7.4",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1"
}
}