-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 995 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
39
40
41
{
"private": true,
"name": "decomoji.dev",
"version": "2.4.0",
"description": "デコモジ公式ウェブサイト",
"main": "dist/index.html",
"author": "decomoji",
"license": "MIT",
"scripts": {
"start": "parcel src/index.pug --open --out-dir .cache",
"build": "parcel build src/index.pug --no-source-maps --public-url ./"
},
"dependencies": {
"core-js": "^3.6.5"
},
"devDependencies": {
"autoprefixer": "^9.8.0",
"commitizen": "^4.1.2",
"cz-customizable": "^6.2.0",
"husky": "^4.2.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"pug": "^3.0.1",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}