-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix",
"backend:dev": "docker-compose -f doc-backend/docker-compose.yaml up -d",
"backend:stop": "docker-compose -f doc-backend/docker-compose.yaml down"
},
"devDependencies": {
"@bg-dev/nuxt-naiveui": "^1.6.1",
"@nuxt/devtools": "latest",
"@nuxtjs/apollo": "^5.0.0-alpha.10",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/i18n": "^8.0.0-rc.6",
"@nuxtjs/tailwindcss": "^6.10.1",
"@typescript-eslint/parser": "^5.59.8",
"@vueuse/core": "^10.6.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vitest": "^0.3.8",
"nuxt": "^3.8.2",
"nuxt-icon": "^0.4.2",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"typescript": "^5.3.2",
"vue": "^3.3.8",
"vue-router": "^4.2.5"
},
"dependencies": {
"echarts": "^5.2.0"
}
}