generated from polyfact/polyfact-tool-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.41 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
{
"name": "polyfact-tool-template",
"version": "0.1.0",
"author": "Lancelot Owczarczak <[email protected]>",
"license": "MIT",
"bin": "build/tool",
"dependencies": {
"fp-ts": "^2.16.0",
"io-ts": "^2.2.20",
"node-fetch": "^2",
"polyfact": "file:../polyfact",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^20.4.2",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"cli-progress": "^3.12.0",
"commander": "^11.0.0",
"esbuild": "0.15.10",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-tsdoc": "^0.2.14",
"prettier": "^2.2.1",
"typescript": "^4.6.2"
},
"scripts": {
"start": "ts-node src/index.ts",
"lint": "prettier --check lib/ src/ ; eslint src/",
"lint:fix": "prettier --write src/ ; eslint --fix src/",
"build": "esbuild src/index.ts --bundle --outfile=build/tool.tmp --platform=node && echo -n '#!/usr/bin/env node\n' | cat - build/tool.tmp > build/tool && rm build/tool.tmp"
}
}