-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.3 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "angular6-ionic4-webpack4-starter",
"version": "0.0.1",
"author": "Paul Souche <[email protected]>",
"private": true,
"keywords": [
"angular6",
"ionic4",
"webpack4",
"starter"
],
"license": "MIT",
"scripts": {
"build": "rimraf www && webpack",
"cordova-build-android": "cordova build android",
"cordova-build-ios": "cordova build ios",
"cordova-platforms": "cordova platform add android ios --verbose --nofetch",
"clean": "rimraf www coverage platforms plugins",
"lint": "tslint \"**/*.ts\" \"**/*.js\" -e \"node_modules/**\" && stylelint \"**/*.scss\"",
"start": "webpack-dev-server -d --open",
"test": "jest --coverage",
"test-watch": "jest --watch"
},
"dependencies": {
"@angular/animations": "^6.0.0",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/platform-server": "^6.0.0",
"@angular/router": "^6.0.0",
"@ionic/angular": "^4.0.0-beta.0",
"@ionic/core": "^4.0.0-beta.0",
"@ionic-native/core": "^5.0.0-beta.0",
"@ionic-native/splash-screen": "^5.0.0-beta.0",
"@ionic-native/status-bar": "^5.0.0-beta.0",
"cordova": "^7.0.0",
"cordova-android": "^7.0.0",
"cordova-ios": "^4.0.0",
"cordova-plugin-device": "^2.0.0",
"cordova-plugin-splashscreen": "^5.0.0",
"cordova-plugin-statusbar": "^2.0.0",
"cordova-plugin-whitelist": "^1.0.0",
"core-js": "^2.0.0",
"ionicons": "^4.0.0",
"rxjs": "^6.0.0",
"ts-helpers": "^1.0.0",
"whatwg-fetch": "^3.0.0",
"zone.js": "^0.8.0"
},
"devDependencies": {
"@ngtools/webpack": "*",
"@types/cordova": "*",
"@types/hammerjs": "*",
"@types/jest": "*",
"@types/node": "*",
"@types/sockjs-client": "*",
"@types/webpack-env": "*",
"angular2-template-loader": "*",
"autoprefixer": "*",
"css-loader": "*",
"file-loader": "*",
"html-loader": "*",
"html-webpack-plugin": "*",
"jest": "*",
"jest-localstorage-mock": "*",
"jest-preset-angular": "*",
"mini-css-extract-plugin": "*",
"ng-router-loader": "*",
"node-sass": "*",
"null-loader": "*",
"postcss-loader": "*",
"raw-loader": "*",
"rimraf": "*",
"sass-loader": "*",
"style-loader": "*",
"stylelint": "*",
"stylelint-config-standard": "*",
"ts-loader": "*",
"tslib": "*",
"tslint": "*",
"tslint-loader": "*",
"typescript": "^2.0.0",
"url-loader": "*",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
},
"__TRANSFORM_HTML__": true
},
"moduleNameMapper": {
"\\.(svg|png)$": "<rootDir>/test/file-mock.js",
"^@ionic/core/loader": "<rootDir>/node_modules/@ionic/core/dist/esm/es5/ionic.define.js",
"^@ionic/core/dist/ionic/svg": "<rootDir>/test/svg-mock.js"
},
"preset": "jest-preset-angular",
"setupFiles": [
"whatwg-fetch",
"jest-localstorage-mock"
],
"setupTestFrameworkScriptFile": "<rootDir>/setup-jest.ts",
"transformIgnorePatterns": [
"node_modules/(?!@ionic)"
]
}
}