-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.82 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
{
"name": "novaturient",
"scripts": {
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"build:android": "npm run setup-webpack-config && tns build android --env.production && npm run remove-webpack-config",
"build:ios": "npm run setup-webpack-config && tns build ios --env.production && npm run remove-webpack-config",
"build:web": "vue-cli-service build --mode production.web",
"clean:android": "rimraf platforms/android",
"clean:ios": "rimraf platforms/ios",
"clean:platforms": "rimraf platforms",
"debug:android": "npm run setup-webpack-config && tns debug android --env.development",
"debug:ios": "npm run setup-webpack-config && tns debug ios --env.development",
"preview:android": "npm run setup-webpack-config && tns preview --env.development --env.android",
"preview:ios": "npm run setup-webpack-config && tns preview --env.development --env.ios",
"remove-webpack-config": "node ./node_modules/vue-cli-plugin-nativescript-vue/lib/scripts/webpack-maintenance post",
"serve:android": "npm run setup-webpack-config && tns run android --env.development",
"serve:ios": "npm run setup-webpack-config && tns run ios --env.development",
"serve:web": "vue-cli-service serve --mode development.web",
"setup-webpack-config": "node ./node_modules/vue-cli-plugin-nativescript-vue/lib/scripts/webpack-maintenance pre"
},
"dependencies": {
"core-js": "^3.6.5",
"nativescript-vue": "^2.5.0-alpha.3",
"nativescript-vue-navigator": "^0.2.0",
"tns-core-modules": "^6.3.2",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/traverse": "^7.5.5",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"nativescript-dev-webpack": "^1.4.0",
"nativescript-vue-template-compiler": "^2.5.0-alpha.3",
"nativescript-worker-loader": "~0.9.5",
"node-sass": "^4.12.0",
"prettier": "^1.19.1",
"rimraf": "^2.6.3",
"sass-loader": "^8.0.2",
"string-replace-loader": "^2.2.0",
"vue-cli-plugin-nativescript-vue": "^0.3.1",
"vue-template-compiler": "^2.6.11"
},
"nativescript": {
"id": "org.advenjourney.novaturient",
"tns-android": {
"version": "6.3.1"
},
"tns-ios": {
"version": "6.3.0"
}
}
}