-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
42 lines (42 loc) · 1.55 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
{
"repository": "extension-configuration-starter",
"license": "MIT",
"version": "2.0.1",
"description": "Starter Kit for Extension Configurations",
"scripts": {
"lint": "eslint --ext .ts . --format table",
"lint:fix": "eslint --fix --ext .ts . --format table",
"pre-commit": "lint-staged",
"precommit:script": "husky add .husky/pre-commit \"npm run pre-commit\"",
"commit-msg:script": "husky add .husky/commit-msg \"npx --no-install commitlint --edit \"$1\"\"",
"prepare": "husky install && npm run precommit:script && npm run commit-msg:script",
"full-deploy:prod": "node bin/full-build-and-upload.js prod",
"selective-deploy:prod": "node bin/selective-build-and-upload.js prod",
"full-deploy:staging": "node bin/full-build-and-upload.js staging",
"selective-deploy:staging": "node bin/selective-build-and-upload.js staging"
},
"lint-staged": {
"*.ts": [
"eslint --fix --fix-type problem,suggestion --ext .ts --format table"
]
},
"dependencies": {
"@bullhorn/bullhorn-cli": "^2.2.6",
"rimraf": "^2.7.1",
"tslint": "~5.10.0",
"typescript": "~3.5.3",
"winston": "^3.9.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"commitlint-plugin-function-rules": "^1.3.2",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4"
}
}