forked from CMU-313/nodebb-theme-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 804 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
{
"name": "nodebb-theme-quickstart",
"version": "0.1.0",
"description": "Enter a description here",
"main": "lib/theme.js",
"keywords": [],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"eslint": "8.x",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-nodebb": "0.1.1",
"eslint-plugin-import": "2.x",
"husky": "5.0.9",
"lint-staged": "10.5.4"
}
}