This repository has been archived by the owner on May 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
125 lines (125 loc) · 3.94 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
115
116
117
118
119
120
121
122
123
124
125
{
"name": "ionic-es6-boilerplate",
"version": "0.0.1",
"description": "ionic-es6-boilerplate",
"private": false,
"author": {
"name": "Marco Turi",
"url": "https://github.com/marcoturi/ionic-es6-boilerplate"
},
"repository": {
"type": "git",
"url": "https://github.com/marcoturi/ionic-es6-boilerplate"
},
"keywords": [
"ionic",
"boilerplate",
"es6"
],
"scripts": {
"lint": "./node_modules/.bin/eslint --cache .",
"ios": "gulp serve --env=dev --api=prod --platform=ios",
"android": "gulp serve --env=dev --api=prod --platform=ios",
"fast": "gulp serve --env=dev --api=prod --platform=web --nochk=true",
"web": "gulp serve --env=dev --api=prod --platform=web",
"web-stage": "gulp serve --env=dev --api=stage --platform=web",
"build": "gulp build --env=dev --api=prod",
"build-stage": "gulp build --env=dev --api=stage",
"build-release": "gulp build --env=prod --api=prod",
"test": "gulp test",
"pree2e": "cd www && python -m SimpleHTTPServer 8090 >> python_serve.log 2>&1 &",
"e2e": "DISPLAY=:99 protractor test/protractor.config.js",
"update-selenium": "./node_modules/protractor/bin/webdriver-manager update",
"commit": "git-cz",
"release": "standard-version && gulp bumpConfigXml",
"outdated": "npm outdated --depth 0",
"babel-doctor": "./node_modules/.bin/babel-doctor"
},
"config": {
"ghooks": {
"pre-push": "npm run lint",
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"bower": "^1.3.3",
"commitizen": "2.8.6",
"concat": "^2.0.0",
"concurrently": "^2.0.0",
"cz-conventional-changelog": "^1.2.0",
"del": "^2.2.2",
"ghooks": "^1.2.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^11.0.1",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.3.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jasmine": "^1.8.1",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-protractor": "^1.27.1",
"eslint-plugin-react": "^6.2.0",
"gulp": "^3.9.1",
"gulp-angular-templatecache": "^2.0.0",
"gulp-autoprefixer": "^3.1.1",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.2",
"gulp-clean-css": "^2.0.12",
"gulp-concat": "^2.2.0",
"gulp-cordova-bump": "^1.3.0",
"gulp-if": "^2.0.0",
"gulp-inject": "^4.1.0",
"gulp-minify-html": "^1.0.6",
"gulp-ng-annotate": "^2.0.0",
"gulp-ngdocs": "^0.3.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-rev": "^7.0.0",
"gulp-sass": "^2.0.4",
"gulp-shell": "^0.5.2",
"gulp-size": "^2.0.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^2.0.0",
"gulp-usemin": "^0.3.24",
"gulp-util": "^3.0.7",
"jasmine": "^2.5.1",
"jasmine-async-sugar": "^1.3.3",
"jasmine-spec-reporter": "^2.4.0",
"lodash": "^4.15.0",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-story-reporter": "^0.3.1",
"karma-teamcity-reporter": "^1.0.0",
"phantomjs": "^2.1.3",
"phantomjs-prebuilt": "^2.1.6",
"protractor": "^4.0.7",
"protractor-jasmine2-screenshot-reporter": "^0.3.2",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.5",
"standard-version": "^2.2.1",
"validate-commit-message": "^3.0.1"
},
"cordovaPlugins": [
"ionic-plugin-keyboard",
],
"cordovaPlatforms": [
],
"license": "MIT"
}