This repository was archived by the owner on Feb 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "nuxtify",
"version": "0.2.0",
"description": "Example",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"start": "cross-env NODE_ENV=production nuxt",
"build": "cross-env NODE_ENV=production nuxt build",
"generate": "cross-env NODE_ENV=production nuxt generate",
"gh": "cross-env NODE_ENV=production BASE=nuxtify nuxt generate"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.0.0",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/composition-api": "^0.23.4",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/toast": "^3.3.1",
"consola": "^2.15.0",
"nuxt": "^2.15.3",
"vuex-module-decorators": "^2.0.0"
},
"devDependencies": {
"@nuxt/types": "^2.15.4",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/vuetify": "^1.11.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.2.1"
},
"nodemonConfig": {
"watch": [
"./*"
],
"ignore": [
"dist/*",
"src/*"
],
"ext": "ts,json",
"exec": "nuxt --optimize_for_size"
}
}