-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) ยท 1.05 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
{
"name": "personal-site",
"version": "1.0.17",
"description": "my personal site",
"main": "index.js",
"scripts": {
"test": "npm run test",
"build": "npx @11ty/eleventy",
"serve": "npx @11ty/eleventy --serve",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
"release": "HUSKY=0 standard-version",
"prepare": "husky install"
},
"keywords": [
"blog",
"site",
"portfolio"
],
"author": "imran nazir",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-img": "^1.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"cz-emoji-conventional": "^1.0.1",
"husky": "^7.0.4",
"prismjs": "^1.25.0",
"standard-version": "^9.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji-conventional"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}