-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.1 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
{
"name": "aurelia-cordova-skeleton",
"displayName": "Aurelia Cordova Skeleton",
"version": "1.0.0",
"description": "A sample Apache Cordova application that responds to the deviceready event.",
"author": "Arjen de Blok",
"license": "Apache-2.0",
"dependencies": {
"aurelia-bootstrapper": "^2.2.0",
"aurelia-loader-webpack": "^2.1.0"
},
"devDependencies": {
"aurelia-webpack-plugin": "^3.0.0-rc.1",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.6",
"style-loader": "^0.20.2",
"ts-loader": "^4.0.1",
"typescript": "^2.7.2",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"scripts": {
"devserver": "webpack-dev-server --hot --inline --mode development",
"build": "webpack --mode development --env.cordova",
"build-prod": "webpack --mode production --env.cordova --env.prod",
"test": "echo \"Error: no test specified\" && exit 1"
}
}