-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "@tsukuba-neu/sawagani",
"version": "0.0.0",
"description": "Generate accounting report format from CSV data",
"author": "Kazumi Inada <[email protected]>",
"private": true,
"keywords": [],
"main": "index.html",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --skipDefaultLibCheck --noEmit && vite build",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"format": "prettier --write ."
},
"license": "MIT",
"dependencies": {
"papaparse": "5.4.1",
"pinia": "2.2.4",
"vue": "3.5.10"
},
"devDependencies": {
"@types/node": "22.7.4",
"@types/papaparse": "5.3.14",
"@vite-pwa/assets-generator": "^0.2.6",
"@vitejs/plugin-vue": "5.1.4",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-vue": "9.28.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"simple-git-hooks": "2.11.1",
"typescript-eslint": "8.8.0",
"vite": "5.4.8",
"vite-plugin-pwa": "^0.20.5",
"vue-tsc": "2.1.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix",
"*.{js,ts,vue,css,md,yaml}": "prettier --write"
}
}