forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.67 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "cactbot",
"version": "0.27.16",
"license": "Apache-2.0",
"type": "module",
"types": "./types",
"repository": {
"type": "git",
"url": "https://github.com/quisquous/cactbot"
},
"scripts": {
"build": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack.json\" webpack --progress --config webpack/webpack.prod.ts",
"build-gh-pages": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack.json\" webpack --config webpack/webpack.ghpages.ts",
"start": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack.json\" webpack serve --config webpack/webpack.dev.ts",
"fetch-deps": "ts-node ./util/fetch_deps.ts",
"tsc-no-emit": "tsc --noEmit",
"lint": "eslint --max-warnings=0 ./",
"lintfix": "eslint --max-warnings=0 --fix ./",
"stylelint": "stylelint resources/**/*.css ui/**/*.css user/**/*.css test/**/*.css util/**/*.css",
"stylelintfix": "stylelint --fix resources/**/*.css ui/**/*.css user/**/*.css test/**/*.css util/**/*.css",
"markdownlint": "markdownlint . --ignore node_modules --ignore publish --ignore plugin/ThirdParty",
"test": "mocha",
"lint-staged": "lint-staged",
"coverage-report": "ts-node util/gen_coverage_report.ts",
"util": "ts-node -r jsdom-global/register util/index.ts",
"find-translations": "npm run util -- findTranslations",
"translate-timeline": "npm run util -- translateTimeline",
"generate": "npm run util -- generate",
"process-triggers": "ts-node util/process_triggers_folder.ts",
"generate-log-guide": "ts-node util/gen_log_guide.ts",
"version": "node util/sync_version.cjs && git add -u"
},
"devDependencies": {
"@actions/github": "^5.0.0",
"@actions/http-client": "^1.0.11",
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/types": "^7.16.0",
"@types/argparse": "^1.0.38",
"@types/chai": "^4.3.1",
"@types/inquirer": "^7.3.2",
"@types/inquirer-fuzzy-path": "^2.3.0",
"@types/is-ci": "^3.0.0",
"@types/lodash": "^4.14.170",
"@types/markdown-magic": "^1.0.1",
"@types/mini-css-extract-plugin": "^1.4.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.23",
"@types/node-fetch": "^2.5.10",
"@types/tar-fs": "^2.0.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"babel-loader": "^8.2.2",
"chai": "^4.3.6",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"dprint": "^0.15.3",
"eslint": "^7.14.0",
"eslint-config-google": "^0.9.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-dprint": "^0.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-rulesdir": "^0.1.0",
"eslint-plugin-tsc": "^2.0.0",
"fast-levenshtein": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.0",
"husky": "^4.2.5",
"is-ci": "^3.0.1",
"jsdom-global": "^3.0.2",
"json5": "^2.2.0",
"jszip": "^3.7.1",
"lint-staged": "^10.0.8",
"markdown-magic": "^2.5.2",
"markdownlint-cli": "^0.31.1",
"mini-css-extract-plugin": "^1.6.0",
"mocha": "^9.2.2",
"node-fetch": "^3.2.10",
"postcss": "^8.3.5",
"proxy-agent": "^5.0.0",
"recast": "^0.20.4",
"style-loader": "^3.3.1",
"stylelint": "^14.8.2",
"stylelint-config-standard": "^25.0.0",
"tar-fs": "^2.1.1",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.0",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.12",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">=16.12.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/**": "ts-node test/test_raidboss_data.ts"
},
"dependencies": {
"@fast-csv/parse": "^4.3.6",
"argparse": "^1.0.10",
"dexie": "^3.0.3",
"dexie-export-import": "^1.0.0",
"eventemitter3": "^4.0.7",
"inquirer": "^8.1.1",
"inquirer-fuzzy-path": "^2.3.0",
"lodash": "^4.14.170"
}
}