-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 961 Bytes
/
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
{
"name": "template-jross",
"version": "1.0.0",
"private": true,
"description": "",
"license": "MIT",
"author": "James Ross <[email protected]> (https://jross.me)",
"type": "module",
"scripts": {
"check-types": "npm run check-types:worker",
"check-types:worker": "tsc --noEmit",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"lint": "npm run lint:js && npm run lint:json && npm run check-types",
"lint:js": "eslint \"**/*.{js,mjs,ts}\"",
"lint:js:fix": "eslint \"**/*.{js,mjs,ts}\" --fix",
"lint:json": "eslint \"**/*.json\""
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240729.0",
"@nodecraft/eslint-config": "^41.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-plugin-json": "^4.0.0",
"eslint-plugin-unicorn": "^55.0.0",
"typescript": "^5.5.4",
"wrangler": "^3.68.0"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}