This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "mtg",
"version": "1.5.0",
"description": "Serverless functions to save Magic The Gathering cards information to a Hasura database.",
"main": "dist/worker.js",
"scripts": {
"build": "esbuild --define:process.env.NODE_ENV=\\\"production\\\" src/index.ts --minify --bundle --format=esm --outfile=dist/worker.js",
"clean": "rm -rf dist",
"clean:node": "rm -rf node_modules",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --fix \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fourjuaneight/mtg.git"
},
"author": "Juan Villela",
"license": "MIT",
"bugs": {
"url": "https://github.com/fourjuaneight/mtg/issues"
},
"homepage": "https://github.com/fourjuaneight/mtg#readme",
"browser": {
"crypto": false
},
"lint-staged": {
"*.ts": [
"npm run format",
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@cloudflare/workers-types": "^3.1.1",
"@types/node": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"esbuild": "^0.14.39",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"pnpm": "^8.6.11",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"dependencies": {
"@cloudflare/wrangler": "^1.19.12"
}
}