forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.87 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "cactbot",
"license": "Apache-2.0",
"type": "module",
"types": "./types",
"repository": {
"type": "git",
"url": "https://github.com/quisquous/cactbot"
},
"scripts": {
"build": "node_modules/.bin/webpack --config webpack/webpack.config.cjs --mode production",
"start": "node_modules/.bin/webpack-dev-server --config webpack/webpack.config.cjs --mode development",
"tsc-no-emit": "node_modules/.bin/tsc --noEmit",
"lint": "node_modules/.bin/eslint --max-warnings=0 **/*.{js,cjs,mjs,ts}",
"lintfix": "node_modules/.bin/eslint --max-warnings=0 --fix **/*.{js,cjs,mjs,ts}",
"stylelint": "node_modules/.bin/stylelint resources/**/*.css ui/**/*.css user/**/*.css test/**/*.css util/**/*.css",
"markdownlint": "node_modules/.bin/markdownlint . --ignore node_modules --ignore publish --ignore CactbotOverlay/ThirdParty",
"test": "node_modules/.bin/mocha",
"lint-staged": "node_modules/.bin/lint-staged",
"coverage-report": "node --loader ts-node/esm util/gen_coverage_report.js",
"find-translations": "node --loader ts-node/esm util/find_missing_translations.js",
"translate-timeline": "node --loader ts-node/esm util/translate_timeline.js",
"process-triggers": "node --loader ts-node/esm util/process_triggers_folder.js"
},
"devDependencies": {
"@babel/types": "7.12.*",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.1",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"eslint": "^7.14.0",
"eslint-config-google": "^0.9.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-rulesdir": "^0.1.0",
"eslint-plugin-tsc": "^2.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.0.8",
"markdownlint-cli": "^0.20.0",
"mocha": "^8.2.1",
"raw-loader": "^4.0.2",
"style-loader": "^2.0.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^19.0.0",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.1.5",
"webpack": "^5.11.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^3.0.8"
},
"engines": {
"node": ">=14.15.0"
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"*.css": "stylelint",
"*.{js,cjs,mjs}": "eslint --max-warnings=0",
"*.ts": "eslint --max-warnings=0 --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]'",
"*.md": "markdownlint",
"*.py": "python -m pylint --errors-only",
"ui/(raidboss|oopsyraidsy)/data/**": "node --loader ts-node/esm test/test_raidboss_data.js"
},
"dependencies": {
"argparse": "^1.0.10"
}
}