This repository has been archived by the owner on Aug 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
103 lines (103 loc) · 3.34 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
{
"name": "BigTop",
"description": "The Big Top Application",
"version": "1.0.0",
"license": "Creative Commons Attribution 3.0 Australia",
"author": {
"name": "Rob Ferguson",
"email": "[email protected]",
"url": "https://robferguson.org/blog"
},
"repository": {
"type": "git",
"url": "https://github.com/Robinyo/big-top"
},
"bugs": {
"url": "https://github.com/Robinyo/big-top/issues"
},
"private": true,
"scripts": {
"clean": "ionic-app-scripts clean",
"lint": "ionic-app-scripts lint",
"dev": "ionic-app-scripts serve",
"ios:dev": "ionic-app-scripts serve --platform=ios",
"build": "ionic-app-scripts build",
"ios:build": "ionic-app-scripts build --platform=ios",
"test": "ng test --config ./config/karma.conf.js",
"test-ci": "ng test --config ./config/karma.conf.js --watch=false --code-coverage",
"test-coverage": "ng test --config ./config/karma.conf.js --code-coverage",
"e2e": "npm run e2e-update && npm run e2e-test",
"e2e-test": "protractor ./config/protractor.conf.js",
"e2e-update": "webdriver-manager update --standalone false --gecko false",
"start": "ionic serve --no-open",
"electron": "electron .",
"concurrently-start": "concurrently -k 'ionic serve --no-open' 'wait-on http://localhost:8100/ && electron'",
"foreman-start": "nf start",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"docs": "./node_modules/.bin/compodoc -d ./docs/ -p ./tsconfig.json --theme vagrant",
"serve-docs": "./node_modules/.bin/compodoc -s -d ./docs",
"ionic:build": "ionic-app-scripts build",
"ionic:serve": "ionic-app-scripts serve"
},
"dependencies": {
"@angular/animations": "^5.0.3",
"@angular/common": "5.0.3",
"@angular/compiler": "5.0.3",
"@angular/compiler-cli": "5.0.3",
"@angular/core": "5.0.3",
"@angular/forms": "5.0.3",
"@angular/http": "5.0.3",
"@angular/platform-browser": "5.0.3",
"@angular/platform-browser-dynamic": "5.0.3",
"@ionic-native/core": "4.5.2",
"@ionic-native/splash-screen": "4.5.2",
"@ionic-native/status-bar": "4.5.2",
"@ionic/storage": "2.1.3",
"ionic-angular": "3.9.2",
"ionicons": "3.0.0",
"rxjs": "5.5.2",
"sw-toolbox": "3.6.0",
"web-animations-js": "^2.3.1",
"zone.js": "0.8.18"
},
"devDependencies": {
"@angular/cli": "^1.5.4",
"@angular/router": "^5.0.3",
"@compodoc/compodoc": "^1.0.4",
"@ionic/app-scripts": "3.1.7",
"@types/jasmine": "^2.8.2",
"@types/node": "^8.0.53",
"concurrently": "^3.5.0",
"electron": "^1.7.9",
"electron-builder": "^19.45.1",
"foreman": "^2.0.0",
"ionic-mocks": "^1.0.4",
"jasmine-core": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-junit-reporter": "^1.2.0",
"typescript": "2.4.2",
"wait-on": "^2.0.2"
},
"config": {
"ionic_source_map_type": "source-map",
"ionic_webpack": "./config/webpack.config.js"
},
"main": "electron/main.js",
"build": {
"appId": "org.robferguson.BigTop",
"files": [
"electron/main.js",
"www/**/*"
],
"mac": {
"category": "productivity"
}
}
}