This repository has been archived by the owner on Feb 19, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.74 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
{
"name": "nativescript-vue-webpack-template",
"private": true,
"scripts": {
"webpack": "webpack --config build/webpack.config.js",
"build": "npm run webpack",
"build:web": "npm run webpack -- --env.platform=web",
"build:native": "npm run webpack -- --env.platform=ios --env.platform=android",
"build:ios": "npm run webpack -- --env.platform=ios",
"build:android": "npm run webpack -- --env.platform=android",
"dev": "npm run webpack -- --watch",
"dev:server": "webpack-dev-server --config build/webpack.config.js --env.platform=web --open --watch",
"dev:web": "npm run webpack -- --env.platform=web --watch",
"dev:native": "npm run webpack -- --env.platform=ios --env.platform=android --watch",
"dev:ios": "npm run webpack -- --env.platform=ios --watch",
"dev:android": "npm run webpack -- --env.platform=android --watch",
"tns": "tns --path dist/native",
"preinstall": "npm uninstall --save-dev nativescript-dev-webpack",
"postinstall": "npm install --save-dev --ignore-scripts nativescript-dev-webpack"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.8",
"extract-text-webpack-plugin": "^3.0.2",
"filemanager-webpack-plugin": "^1.0.17",
"html-webpack-plugin": "^2.30.1",
"nativescript-dev-webpack": "^0.9.1",
"nativescript-vue-loader": "^0.1.5",
"nativescript-vue-template-compiler": "^0.7.9",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1",
"webpack-pre-emit-plugin": "^0.1.0"
},
"dependencies": {
"nativescript-vue": "^1.0.0",
"tns-core-modules": "^3.4.0",
"vue": "^2.5.13"
}
}