-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 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
{
"name": "nuxt-example",
"version": "1.0.0",
"description": "My solid Nuxt.js project",
"author": "Roman V. Kolosov",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"cordova": "nuxt generate --config-file=cordova.config.js && rm -R cordova/www/* && cp -R dist/* cordova/www/ && cd cordova && cordova build && cd .. && npm run copy-applications",
"copy-applications": "rm -R applications/* && cp -r cordova/platforms/ios/build/emulator/NuxtExample.app applications && cp cordova/platforms/android/app/build/outputs/apk/debug/app-debug.apk applications"
},
"dependencies": {
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.10.3",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/laravel-echo": "^1.1.0",
"@nuxtjs/pwa": "^3.0.0-0",
"acorn": ">=6.4.1",
"minimist": ">=1.2.2",
"nuxt": "^2.12.2",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.2.0",
"@nuxtjs/vuetify": "^1.11.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-nuxt": "^0.5.2",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^1.19.1"
}
}