-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
44
45
46
47
48
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint . --ext .js,.ts,.vue",
"lint:fix": "eslint --fix . --ext .js,.ts,.vue",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky",
"test": "vitest run --config ./__tests__/vitest.config.ts",
"test-e2e": "npm test -- --dir ./__tests__/e2e",
"test-unit": "npm test -- --dir ./__tests__/unit"
},
"dependencies": {
"nuxt": "^3.10.3",
"primeicons": "^6.0.1",
"primevue": "^3.49.1",
"vue": "^3.4.19",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@nuxt/test-utils": "^3.11.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@playwright/test": "^1.42.1",
"@vue/test-utils": "^2.4.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.22.0",
"happy-dom": "^13.7.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nuxt-primevue": "^0.3.1",
"playwright-core": "^1.42.1",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"typescript": "^5.4.2",
"typescript-eslint": "^7.1.1",
"vitest": "^1.3.1",
"vue-tsc": "^1.8.27"
}
}