-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.83 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
56
57
58
59
60
61
{
"version": "2.4.2",
"private": true,
"name": "vue-editor",
"description": "Editor online of code made with Vue.",
"author": "beatrizsmerino@gmail.com",
"license": "ISC",
"main": "index.js",
"type": "module",
"scripts": {
"install:clean": "rm -rf node_modules package-lock.json",
"postinstall": "npm run lint",
"prepare": "husky",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prettier:fix": "prettier --write \"./**/*.{css,scss,sass,json,js,cjs,mjs,vue}\"",
"eslint:fix": "eslint \"**/*.{json,js,cjs,mjs,vue}\" --fix --ignore-path .eslintignore",
"stylelint:fix": "stylelint \"**/*.{css,scss,sass,vue}\" --fix --ignore-path .stylelintignore",
"lint": "npm run prettier:fix && npm run eslint:fix && npm run stylelint:fix",
"deploy": "node gh-pages-deploy.js"
},
"dependencies": {
"chalk": "^5.4.1",
"execa": "^9.5.2",
"json-editor-vue": "^0.17.3",
"node-emoji": "^2.2.0",
"v-clipboard": "^3.0.0-next.1",
"vite-plugin-svg-icons": "^2.0.1",
"vue": "^2.7.16",
"vue-router": "^3.6.5",
"vuex": "^3.6.2"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@vitejs/plugin-vue2": "^2.3.3",
"@vue/eslint-config-prettier": "^10.1.0",
"eslint": "^8.57.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"sass": "^1.83.1",
"stylelint": "^16.14.1",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-scss": "^6.11.0",
"vite": "^6.0.11"
},
"engines": {
"node": "20.18.0",
"npm": "10.8.2"
}
}