-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
88 lines (88 loc) · 2.86 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "radio",
"version": "1.0.0",
"description": "A native application built with NativeScript-Vue",
"author": "Camba <info@camba.coop>",
"license": "GPL-3.0",
"scripts": {
"build": "webpack --env.tnsAction build",
"build:android": "npm run build -- --env.android",
"build:ios": "npm run build -- --env.ios",
"debug": "webpack --watch --env.tnsAction debug",
"debug:android": "npm run debug -- --env.android",
"debug:ios": "npm run debug -- --env.ios",
"watch": "webpack --watch --env.tnsAction run",
"watch:android": "npm run watch -- --env.android",
"watch:ios": "npm run watch -- --env.ios",
"clean": "rimraf platforms"
},
"nativescript": {
"id": "coop.radio.app",
"tns-ios": {
"version": "6.0.1"
},
"tns-android": {
"version": "6.0.0"
}
},
"dependencies": {
"@vue/devtools": "^5.0.0-beta.3",
"axios": "^0.18.0",
"nativescript-appavailability": "^1.3.1",
"nativescript-audio": "^5.0.0",
"nativescript-bottom-navigation": "^1.5.1",
"nativescript-cardview": "^3.1.1",
"nativescript-email": "^1.5.3",
"nativescript-open-app": "git+https://github.com/ludwiktrammer/nativescript-open-app.git",
"nativescript-plugin-firebase": "^9.1.0",
"nativescript-social-share": "^1.5.0",
"nativescript-socket.io": "^0.9.0",
"nativescript-socketio": "^3.3.1",
"nativescript-theme-core": "^1.0.4",
"nativescript-toast": "^1.4.6",
"nativescript-toasty": "^2.0.1",
"nativescript-vue": "^2.0.0",
"nativescript-vue-devtools": "^1.0.0",
"tns-core-modules": "6.0.1",
"vue-i18n": "^8.2.1",
"vue-router": "^3.0.7",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.2",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0",
"babylon": "6.18.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-vue-libs": "^3.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"fs-extra": "^5.0.0",
"lazy": "1.0.11",
"nativescript-dev-webpack": "next",
"nativescript-vue-template-compiler": "^2.0.0",
"nativescript-worker-loader": "~0.9.0",
"node-sass": "^4.9.2",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"terser-webpack-plugin": "^1.1.0",
"vue-eslint-parser": "^3.2.2",
"vue-loader": "^15.2.6",
"webpack": "^4.16.4",
"webpack-bundle-analyzer": "~2.13.1",
"webpack-cli": "^3.1.0",
"winston-color": "^1.0.0"
}
}