forked from buggregator/frontend
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.15 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"sb": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"generate": "nuxi generate",
"preview": "nuxi preview",
"postinstall": "nuxi prepare",
"prepare": "cd ../ && npx husky install",
"lint": "eslint . --fix"
},
"type": "module",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{vue,html}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/tailwindcss": "^6.2.0",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-vite": "^0.3.0",
"@types/downloadjs": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nuxi": "^3.3.1",
"nuxt": "3.3.3",
"postcss": "^8.3.11",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"storybook-addon-themes": "^6.1.0",
"typescript": "^4.9.4",
"vue-eslint-parser": "^9.1.0"
},
"dependencies": {
"@highlightjs/vue-plugin": "^2.1.2",
"@hpcc-js/wasm": "^2.8.0",
"@pinia/nuxt": "^0.4.6",
"@storybook/addon-actions": "^6.5.15",
"@storybook/vue3": "^6.5.16",
"@vue/shared": "^3.2.45",
"centrifuge": "^3.1.0",
"d3-graphviz": "^5.0.2",
"d3-selection": "^3.0.0",
"downloadjs": "^1.4.7",
"flame-chart-js": "^2.3.1",
"highlight.js": "^11.7.0",
"html-to-image": "^1.11.4",
"moment": "^2.29.4",
"pinia": "^2.0.30",
"tailwindcss": "^3.2.4",
"vue": "^3.2.45",
"vue3-perfect-scrollbar": "^1.6.1",
"vue3-tabs-component": "^1.2.0"
}
}