generated from svub/text-adventure-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.38 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
{
"name": "hollow-white",
"version": "0.1.0",
"private": true,
"scripts": {
"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",
"build": "npm run build: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 --port 8081",
"serve": "npm run serve:web",
"setup-webpack-config": "node ./node_modules/vue-cli-plugin-nativescript-vue/lib/scripts/webpack-maintenance pre"
},
"dependencies": {
"@gtm-support/vue2-gtm": "^2.0.0",
"@types/lodash": "^4.14.167",
"core-js": "^3.6.5",
"crypto-js": "^4.0.0",
"intersection-observer": "^0.12.0",
"lodash": "^4.17.20",
"nativescript-vue": "^2.5.0-alpha.3",
"tns-core-modules": "^6.3.2",
"tslib": "^2.4.1",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2",
"vuex": "^3.4.0",
"vuex-class": "^0.3.2",
"vuex-map-fields": "^1.4.1",
"vuex-persist-indexeddb": "^0.1.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.5.5",
"@babel/traverse": "^7.5.5",
"@babel/types": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@volar/vue-language-plugin-pug": "^1.0.7",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-dom": "^3.2.40",
"@vue/eslint-config-typescript": "^5.0.2",
"babel-loader": "^8.0.6",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"nativescript-dev-webpack": "^1.4.0",
"nativescript-vue-template-compiler": "^2.5.0-alpha.3",
"nativescript-worker-loader": "~0.9.5",
"rimraf": "^2.6.3",
"string-replace-loader": "^2.2.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"terser-webpack-plugin": "^2.1.3",
"tns-platform-declarations": "^6.3.2",
"typescript": "~4.8.4",
"vue-cli-plugin-nativescript-vue": "~0.3.1",
"vue-cli-plugin-pug": "^2.0.0",
"vue-template-compiler": "^2.6.11"
},
"nativescript": {
"id": "org.nativescript.application",
"tns-android": {
"version": "6.3.1"
},
"tns-ios": {
"version": "6.3.0"
}
}
}