-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.96 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.96 KB
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
{
"name": "xplat-sample-ionic-web",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "./node_modules/.bin/nx lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "./node_modules/.bin/nx affected:apps",
"affected:libs": "./node_modules/.bin/nx affected:libs",
"affected:build": "./node_modules/.bin/nx affected:build",
"affected:e2e": "./node_modules/.bin/nx affected:e2e",
"affected:test": "./node_modules/.bin/nx affected:test",
"affected:lint": "./node_modules/.bin/nx affected:lint",
"affected:dep-graph": "./node_modules/.bin/nx affected:dep-graph",
"affected": "./node_modules/.bin/nx affected",
"format": "./node_modules/.bin/nx format:write",
"format:write": "./node_modules/.bin/nx format:write",
"format:check": "./node_modules/.bin/nx format:check",
"update": "ng update @nrwl/schematics",
"update:check": "ng update",
"workspace-schematic": "./node_modules/.bin/nx workspace-schematic",
"dep-graph": "./node_modules/.bin/nx dep-graph",
"help": "./node_modules/.bin/nx help",
"clean.shared": "cd libs/ && git clean -dfX && cd ../xplat/ && git clean -dfX",
"clean": "npx rimraf -- hooks node_modules package-lock.json && npm i",
"start.web.myapp": "ng serve web-myapp",
"build.ionic.myapp": "cd apps/ionic-myapp && npm run build:web",
"prepare.ionic.myapp": "npm run clean && npm run clean.ionic.myapp && npm run build.ionic.myapp",
"prepare.ionic.myapp.ios": "npm run prepare.ionic.myapp && cd apps/ionic-myapp && npm run cap.add.ios",
"prepare.ionic.myapp.android": "npm run prepare.ionic.myapp && cd apps/ionic-myapp && npm run cap.add.android",
"open.ionic.myapp.ios": "cd apps/ionic-myapp && npm run cap.ios",
"open.ionic.myapp.android": "cd apps/ionic-myapp && npm run cap.android",
"sync.ionic.myapp": "cd apps/ionic-myapp && npm run cap.copy",
"start.ionic.myapp": "cd apps/ionic-myapp && npm start",
"clean.ionic.myapp": "cd apps/ionic-myapp && npx rimraf -- hooks node_modules platforms www plugins ios android package-lock.json && npm i && rimraf -- package-lock.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^7.0.0",
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/forms": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@angular/router": "^7.0.0",
"core-js": "^2.5.4",
"rxjs": "~6.3.3",
"zone.js": "^0.8.26",
"@nrwl/nx": "7.5.1",
"@ngrx/effects": "6.1.2",
"@ngrx/router-store": "6.1.2",
"@ngrx/store": "6.1.2",
"@ngx-translate/core": "~11.0.0",
"@ngx-translate/http-loader": "~4.0.0",
"@testing/scss": "file:libs/scss",
"reflect-metadata": "^0.1.12",
"@ionic-native/core": "^5.0.0",
"@ionic-native/splash-screen": "^5.0.0",
"@ionic-native/status-bar": "^5.0.0",
"@ionic/angular": "^4.0.0",
"@testing/web": "file:xplat/web"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.11.2",
"@angular/cli": "~7.2.2",
"@angular/compiler-cli": "^7.0.0",
"@angular/language-service": "^7.0.0",
"@ngrx/store-devtools": "6.1.2",
"@nrwl/schematics": "7.5.1",
"@nstudio/schematics": "^7.2.8",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "~4.5.0",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "0.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ngrx-store-freeze": "0.2.4",
"prettier": "1.15.2",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2",
"@ionic/angular-toolkit": "~1.2.0"
},
"xplat": {
"prefix": "abc"
}
}