-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "smokeshow",
"version": "1.0.0",
"description": "Temporary site deployment using cloudflare workers",
"main": "worker/script.js",
"scripts": {
"build": "node build.mjs",
"dev": "wrangler dev",
"format": "prettier --write 'src/**/*.{js,ts,css,scss,html}'",
"lint": "eslint --max-warnings=0 src && prettier --check 'src/**/*.{js,ts,css,scss,html}' && tsc --noEmit"
},
"author": "Samuel Colvin",
"license": "MIT",
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 119,
"bracketSpacing": false,
"arrowParens": "avoid"
},
"eslintConfig": {
"root": true,
"ignorePatterns": [
"/dist/**/*"
],
"extends": [
"typescript",
"prettier"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"no-constant-condition": "off"
}
},
"dependencies": {
"@cloudflare/workers-types": "^4.20230821.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"esbuild": "^0.19.2",
"esbuild-sass-plugin": "^2.13.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-typescript": "^3.0.0",
"highlight.js": "^10.6.0",
"marked": "^7.0.5",
"marked-gfm-heading-id": "^3.0.6",
"marked-highlight": "^2.0.4",
"prettier": "^3.0.3",
"sass": "^1.32.8",
"typescript": "^5.2.2",
"wrangler": "^3.6.0"
}
}