ds4/package.json

52 lines
1.6 KiB
JSON
Raw Normal View History

2020-10-29 16:18:38 +01:00
{
2020-12-23 17:09:02 +01:00
"private": true,
"name": "test",
"version": "0.1.0",
"description": "",
"scripts": {
"package": "gulp package",
2020-12-23 20:33:19 +01:00
"build": "gulp build",
2020-12-23 17:09:02 +01:00
"build:watch": "gulp watch",
2020-12-23 20:33:19 +01:00
"link": "gulp link",
2020-12-23 17:09:02 +01:00
"clean": "gulp clean && gulp link --clean",
2020-12-28 16:50:32 +01:00
"update": "npm install --save-dev git+https://git.f3l.de/dungeonslayers/foundry-pc-types.git#f3l-fixes",
2020-12-23 18:26:20 +01:00
"lint": "eslint 'src/**/*.ts' --cache",
"lint:fix": "eslint 'src/**/*.ts' --cache --fix"
2020-12-23 17:09:02 +01:00
},
"author": "",
"license": "",
"devDependencies": {
2020-12-23 17:26:53 +01:00
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
2020-12-23 17:09:02 +01:00
"archiver": "^5.1.0",
"chalk": "^4.1.0",
2020-12-23 17:26:53 +01:00
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
2020-12-28 16:50:32 +01:00
"foundry-pc-types": "git+https://git.f3l.de/dungeonslayers/foundry-pc-types.git#f3l-fixes",
2020-12-23 17:09:02 +01:00
"fs-extra": "^9.0.1",
"gulp": "^4.0.2",
"gulp-git": "^2.10.1",
"gulp-less": "^4.0.1",
"gulp-sass": "^4.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
2020-12-23 18:23:26 +01:00
"husky": "^4.3.6",
2020-12-23 17:09:02 +01:00
"json-stringify-pretty-compact": "^2.0.0",
2020-12-23 18:23:26 +01:00
"lint-staged": "^10.5.3",
2020-12-23 17:26:53 +01:00
"prettier": "^2.2.1",
2020-12-23 17:09:02 +01:00
"sass": "^1.30.0",
"typescript": "^4.1.3",
"yargs": "^16.2.0"
2020-12-23 18:23:26 +01:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.json": "prettier --write",
"*.scss": "prettier --write"
2020-12-23 17:09:02 +01:00
}
2020-10-29 16:18:38 +01:00
}