forked from wesbos/hot-tips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.02 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
{
"name": "hot-tips",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npm run vite",
"vite": "vite",
"caddy": "caddy start"
},
"author": "Wes Bos",
"license": "MIT",
"eslintConfig": {
"extends": "wesbos",
"overrides": [
{
"files": [
"**/*.ts",
"**/*.tsx"
],
"extends": [
"wesbos/typescript"
],
"rules": {
"@typescript-eslint/no-unused-expressions": "off"
}
}
],
"rules": {
"quotes": [
"error",
"backtick"
],
"no-unused-vars": "off",
"no-unused-expressions": "off",
"@typescript-eslint/no-unused-expressions": "off"
}
},
"dependencies": {
"eslint-config-wesbos": "^3.2.0",
"fast-glob": "^3.2.12",
"prettier-plugin-multiline-arrays": "^1.1.2",
"vite": "^4.0.4",
"vite-plugin-list-directory-contents": "^1.4.5"
},
"devDependencies": {
"@types/node": "^18.11.18"
}
}