-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 893 Bytes
/
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
{
"name": "testing",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:prettier",
"lintfix": "prettier --write --list-different ."
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/composition-api": "^0.33.1",
"@nuxtjs/router": "^1.7.0",
"@pinia/nuxt": "^0.2.1",
"core-js": "^3.25.3",
"nuxt": "^2.15.8",
"pinia": "^2.0.28",
"vue": "^2.7.10",
"vue-demi": "^0.13.11",
"vue-server-renderer": "^2.7.10",
"vue-template-compiler": "^2.7.10"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^5.3.3",
"eslint-config-prettier": "^8.5.0",
"postcss": "^8.4.17",
"prettier": "^2.7.1"
},
"overrides": {
"@nuxt/kit": "3.0.0-rc.13"
}
}