-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.45 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "js-encoder",
"private": true,
"version": "4.10.0",
"type": "module",
"scripts": {
"start": "bash src/scripts/start.sh",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint --ext .ts,.vue src/ --fix && stylelint \"./src/**/*.{css,scss,vue}\" --fix",
"prepare": "husky install"
},
"prettier": {
"eslintIntegration": true,
"semi": false,
"singleQuote": false,
"jsxSingleQuote": false,
"printWidth": 120
},
"dependencies": {
"@babel/standalone": "^7.24.0",
"@codemirror/autocomplete": "^6.11.1",
"@codemirror/commands": "^6.3.0",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.6",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-less": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.2",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/lang-vue": "^0.1.2",
"@codemirror/language": "^6.9.2",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/lint": "^6.4.2",
"@codemirror/search": "^6.5.4",
"@codemirror/state": "^6.3.1",
"@codemirror/view": "^6.21.4",
"@emmetio/codemirror6-plugin": "^0.3.0",
"@lezer/highlight": "^1.2.0",
"@replit/codemirror-indentation-markers": "^6.5.0",
"@replit/codemirror-vscode-keymap": "^6.0.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@typescript/vfs": "^1.5.0",
"@vue/compiler-sfc": "^3.4.27",
"autoprefixer": "^10.4.19",
"codemirror": "^6.0.1",
"coffeescript": "^2.7.0",
"eslint4b-prebuilt": "^6.7.2",
"espree": "^10.0.1",
"estraverse": "^5.3.0",
"fflate": "^0.8.2",
"hash-sum": "^2.0.0",
"highlight.js": "^11.9.0",
"htmlhint": "^1.1.4",
"jszip": "^3.10.1",
"less": "^4.2.0",
"marked": "^12.0.1",
"marked-highlight": "^2.1.1",
"pug": "^3.0.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"strip-json-comments": "^5.0.1",
"stylelint": "^16.2.0",
"stylelint-config-recommended-less": "^3.0.0",
"stylelint-config-standard": "^35.0.0",
"stylelint-config-standard-scss": "^12.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylus": "^0.63.0",
"vite-plugin-eslint": "^1.8.1",
"vue": "^3.4.5",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@types/babel__standalone": "^7.1.7",
"@types/coffeescript": "^2.5.7",
"@types/espree": "^10.0.0",
"@types/estraverse": "^5.1.7",
"@types/file-saver": "^2.0.7",
"@types/hash-sum": "^1.0.2",
"@types/htmlhint": "^1.1.5",
"@types/less": "^3.0.6",
"@types/node": "^18.0.5",
"@types/pug": "^2.0.10",
"@types/stylus": "^0.48.42",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-vue": "^5.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"husky": "^8.0.3",
"pinia": "^2.1.7",
"postcss-html": "^1.6.0",
"prettier": "^3.2.5",
"rollup-plugin-external-globals": "^0.10.0",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.4.5",
"unplugin-vue-define-options": "^1.4.1",
"vite": "^5.0.11",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-remove-console": "^2.2.0",
"vite-plugin-require-transform": "^1.0.21",
"vue-tsc": "^2.0.22"
}
}