-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 973 Bytes
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
{
"name": "vanilla-ts-template",
"private": true,
"version": "0.0.0",
"author": "danpacho",
"type": "module",
"scripts": {
"vite:dev": "vite",
"vite:build": "tsc && vite build",
"vite:preview": "vite preview",
"lint": "eslint '**/*.js'",
"prettier": "prettier '**/*.{js,json,md}' --check",
"prettier:fix": "prettier **/*.{js,json,md}' --write",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"gitmoji-cli": "^7.0.2",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"vite": "^3.2.3"
}
}