-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "features-playground",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write --ignore-path .gitignore src/",
"all": "run-s --print-label build lint"
},
"dependencies": {
"@codemirror/lang-python": "^6.1.6",
"@codemirror/theme-one-dark": "^6.1.2",
"@mdi/font": "^7.4.47",
"@vueuse/core": "^10.9.0",
"codemirror": "^6.0.1",
"lodash": "^4.17.21",
"roboto-fontface": "*",
"splitpanes": "^3.1.5",
"uplot": "^1.6.30",
"vue": "^3.4.27",
"vue-codemirror": "^6.1.1",
"vuetify": "^3.6.3"
},
"devDependencies": {
"@types/lodash": "^4.17.1",
"@types/node": "^20.12.10",
"@types/splitpanes": "^2.2.6",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.25.0",
"eslint-plugin-vuetify": "^2.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"pyodide": "^0.25.1",
"typescript": "~5.4.5",
"unplugin-fonts": "^1.1.1",
"vite": "^5.2.11",
"vite-plugin-vuetify": "^2.0.3",
"vue-tsc": "^2.0.16"
}
}