-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "customize-me",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview --host",
"lint": "npm-run-all lint:*",
"test:unit": "vitest --environment jsdom --root src/",
"lint:js": "eslint . --ext .vue,.js --fix --ignore-path .gitignore",
"lint:style": "stylelint 'src/**/*.{vue,scss}'"
},
"dependencies": {
"@headlessui/vue": "^1.7.8",
"@heroicons/vue": "^2.0.13",
"highlight.js": "^11.7.0",
"prismjs": "^1.29.0",
"sass": "^1.47.0",
"simple-code-editor": "^1.2.2",
"vite-svg-loader": "^3.1.2",
"vue": "^3.2.41",
"vue-prism-editor": "^2.0.0-alpha.2",
"vue-router": "^4.1.5",
"vue3-colorpicker": "^2.1.2"
},
"devDependencies": {
"@iconify/vue": "^4.1.0",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/test-utils": "^2.1.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.26.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"pre-commit": "^1.2.2",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"tailwindcss": "^3.2.4",
"vite": "^3.1.8",
"vitest": "^0.24.3"
},
"pre-commit": [
"lint"
]
}