-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.59 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
{
"name": "projetz",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"start": "nuxt start",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue . --fix",
"test:unit": "jest",
"test:e2e": "npx cypress run"
},
"dependencies": {
"@pinia/nuxt": "^0.5.1",
"axios": "^1.7.7",
"nuxt": "^3.13.0",
"pinia": "^2.0.36",
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@cypress/webpack-preprocessor": "^6.0.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/wait-on": "^5.3.4",
"@vitejs/plugin-vue": "^4.3.0",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"cypress": "^13.14.2",
"eslint": "^8.50.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.0",
"sass-embedded": "^1.79.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"vite": "^4.5.5",
"wait-on": "^8.0.1"
}
}