-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "pokedex",
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "rimraf dist",
"dev": "cross-env HOST=0.0.0.0 nuxt dev",
"build": "nuxt build",
"start": "nuxt start",
"pregenerate": "npm run clean",
"generate": "cross-env nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "npm run lint:js"
},
"dependencies": {
"@nuxt/typescript-runtime": "^2.0.1",
"@nuxtjs/axios": "^5.12.5",
"@nuxtjs/pwa": "^3.3.4",
"core-js": "^3.8.2",
"lodash-humps": "^3.1.5",
"nuxt": "^2.14.12",
"nuxt-property-decorator": "^2.9.1"
},
"devDependencies": {
"@nuxt/types": "^2.14.12",
"@nuxt/typescript-build": "^2.0.4",
"@nuxtjs/color-mode": "^2.0.2",
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/tailwindcss": "^6.11.4",
"autoprefixer": "^10.4.17",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.4.1",
"node-sass": "^9.0.0",
"nuxt-typed-vuex": "^0.1.22",
"postcss": "^8.4.35",
"rimraf": "^3.0.2",
"sass-loader": "^10.1.1",
"stylelint-config-recommended": "^3.0.0",
"tailwindcss": "^3.4.1"
}
}