-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "svg-sample",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "yarn type:check && vite build",
"serve": "vite preview",
"type:check": "vue-tsc --noEmit",
"lint:fix": "eslint --fix 'src/**/*.{js,ts,vue}'",
"format": "prettier 'src/**/*.{js,ts,vue,json}'",
"format:fix": "prettier --write 'src/**/*.{js,ts,vue,json}'",
"prepare": "husky install"
},
"dependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@types/gif.js": "0.2.2",
"bulma": "0.9.4",
"canvg": "4.0.1",
"detect-browser": "5.3.0",
"gif.js": "0.2.0",
"hex-rgb": "5.0.0",
"makerjs": "0.18.0",
"opentype.js": "1.3.4",
"sass": "1.65.1",
"text-to-svg": "3.1.5",
"vue": "3.3.4",
"vue-gtag": "2.0.1",
"vue-i18n": "9.2.2",
"vue3-colorpicker": "2.2.2"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "6.0.3",
"@types/text-to-svg": "3.1.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-vue": "4.2.3",
"@vue/compiler-sfc": "3.3.4",
"eslint": "8.47.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-vue": "9.17.0",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "3.0.1",
"typescript": "4.9.5",
"vite": "4.4.9",
"vue-tsc": "0.3.0"
},
"lint-staged": {
"src/**/*.{js,ts,vue}": [
"yarn format:fix",
"yarn lint:fix"
]
}
}