-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.38 KB
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
{
"name": "js-helper-code",
"private": false,
"description": "This repo has the 'js code snippets'. You can see the output at console.",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Anand Raja"
},
"homepage": "http://actionanand.github.io/js-helper-code",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --base=/js-helper-code/",
"preview": "vite preview",
"precommit": "run-s format:fix lint",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts ",
"format:fix": "pretty-quick --staged",
"format:check": "prettier --config ./.prettierrc --list-different \"./**/*{.ts,.js,.json,.css,.scss}\"",
"format:all": "prettier --config ./.prettierrc --write \"./**/*{.ts,.js,.jsx,.tsx,.json,.css,.scss}\"",
"predeploy": "yarn run build",
"deploy": "gh-pages -d dist",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"typescript": "^5.0.2",
"vite": "^4.3.2"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || ^18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
}