-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.62 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
58
59
60
{
"name": "template-typescript",
"version": "0.0.1",
"description": "",
"author": "Harry Tran <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TechMeLy/template-typescript.git"
},
"scripts": {
"preinstall": "npx only-allow yarn",
"postinstall": "make git-hooks",
"lint:eslint": "eslint --cache --ext .js,.vue,.ts,.tsx . ",
"lint:eslint:quiet": "yarn lint:eslint --quiet",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:nano-staged": "yarn nano-staged",
"lint:files": "ls-lint",
"bundlesize": "bundlesize --config bundlesize.config.json"
},
"devDependencies": {
"@ls-lint/ls-lint": "1.11.2",
"@techmely/types": "1.1.1",
"@types/node": "18.0.3",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"c8": "^7.11.3",
"eslint": "8.19.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-unicorn": "43.0.1",
"nano-staged": "0.8.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typescript": "4.7.4",
"vite": "2.9.13",
"vitest": "0.17.1"
},
"engines": {
"node": ">=16.15.1",
"npm": ">=8.11.0"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/harrytran998"
},
{
"type": "patreon",
"url": "https://www.patreon.com/harrytran998"
}
],
"packageManager": "[email protected]",
"nano-staged": {
"*.{js,ts}": "echo Hello"
}
}