-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ionic-nuxt-app",
"version": "0.0.0",
"description": "My Ionic Nuxt.js app",
"author": "Maksim Kostromin",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "jest",
"predeploy": "cross-env BASE_HREF='/ionic-nuxt-app/' npm run generate",
"serve": "serve ./dist",
"prepm2": "npm run generate",
"pm2": "pm2 start 'npm run serve' --name app",
"restart": "pm2 restart app",
"logs": "pm2 logs",
"stop": "pm2 kill"
},
"dependencies": {
"@ionic/core": "5.1.0",
"@ionic/vue": "0.0.4",
"@nuxtjs/axios": "5.10.3",
"@nuxtjs/dotenv": "1.4.1",
"nuxt": "2.12.2"
},
"devDependencies": {
"@babel/preset-env": "7.9.6",
"@nuxtjs/pwa": "3.0.0-beta.20",
"@types/node": "13.13.4",
"@vue/test-utils": "1.0.0-beta.33",
"babel-jest": "25.5.1",
"cross-env": "7.0.2",
"jest": "24.9.0",
"pm2": "4.4.0",
"serve": "11.3.0",
"vue-jest": "4.0.0-beta.2"
},
"babel": {
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
}
}