-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix .",
"test": "vitest",
"e2e": "npx playwright test",
"e2e:report": "npx playwright test --reporter dot",
"e2e:web": "npx playwright show-report",
"e2e:ui": "npx playwright test --ui"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/test-utils": "^3.11.0",
"@types/luxon": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vue/test-utils": "^2.4.4",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.1",
"happy-dom": "^13.3.4",
"nuxt": "^3.9.3",
"playwright-core": "^1.41.1",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"sass": "^1.70.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2",
"vue": "^3.4.14",
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.27"
},
"dependencies": {
"@pinia/nuxt": "^0.5.1",
"@playwright/test": "^1.41.1",
"@vueuse/core": "^10.7.2",
"echarts": "^5.4.3",
"luxon": "^3.4.4",
"pinia": "^2.1.7",
"vue3-toastify": "^0.2.1",
"vuedraggable": "^4.1.0"
}
}