mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
fix(package): package.json cleanup
This commit is contained in:
parent
e602783e22
commit
4ce58eafcb
1 changed files with 2 additions and 22 deletions
24
package.json
24
package.json
|
|
@ -19,6 +19,7 @@
|
||||||
"ammap3": "github:amcharts/ammap3",
|
"ammap3": "github:amcharts/ammap3",
|
||||||
"bootstrap": "^4.0.0-alpha.2",
|
"bootstrap": "^4.0.0-alpha.2",
|
||||||
"bootstrap-loader": "^1.0.8",
|
"bootstrap-loader": "^1.0.8",
|
||||||
|
"chart.js": "^1.1.1",
|
||||||
"chartist": "^0.9.7",
|
"chartist": "^0.9.7",
|
||||||
"core-js": "^2.2.2",
|
"core-js": "^2.2.2",
|
||||||
"easy-pie-chart": "^2.1.7",
|
"easy-pie-chart": "^2.1.7",
|
||||||
|
|
@ -31,7 +32,6 @@
|
||||||
"leaflet-map": "^0.2.1",
|
"leaflet-map": "^0.2.1",
|
||||||
"lodash": "^4.12.0",
|
"lodash": "^4.12.0",
|
||||||
"ng2-bootstrap": "^1.0.16",
|
"ng2-bootstrap": "^1.0.16",
|
||||||
"ng2-charts": "^1.0.3",
|
|
||||||
"normalize.css": "^4.1.1",
|
"normalize.css": "^4.1.1",
|
||||||
"rxjs": "5.0.0-beta.6",
|
"rxjs": "5.0.0-beta.6",
|
||||||
"tether": "^1.2.4",
|
"tether": "^1.2.4",
|
||||||
|
|
@ -54,22 +54,9 @@
|
||||||
"html-webpack-plugin": "^2.15.0",
|
"html-webpack-plugin": "^2.15.0",
|
||||||
"http-server": "^0.9.0",
|
"http-server": "^0.9.0",
|
||||||
"imports-loader": "^0.6.5",
|
"imports-loader": "^0.6.5",
|
||||||
"istanbul-instrumenter-loader": "^0.2.0",
|
|
||||||
"json-loader": "^0.5.4",
|
"json-loader": "^0.5.4",
|
||||||
"karma": "^0.13.22",
|
|
||||||
"karma-chrome-launcher": "^1.0.1",
|
|
||||||
"karma-coverage": "^1.0.0",
|
|
||||||
"karma-jasmine": "^1.0.2",
|
|
||||||
"karma-mocha-reporter": "^2.0.0",
|
|
||||||
"karma-phantomjs-launcher": "^1.0.0",
|
|
||||||
"karma-sourcemap-loader": "^0.3.7",
|
|
||||||
"karma-webpack": "1.7.0",
|
|
||||||
"parse5": "^2.1.5",
|
"parse5": "^2.1.5",
|
||||||
"phantomjs-polyfill": "0.0.2",
|
|
||||||
"phantomjs-prebuilt": "^2.1.7",
|
|
||||||
"protractor": "^3.2.2",
|
|
||||||
"raw-loader": "0.5.1",
|
"raw-loader": "0.5.1",
|
||||||
"remap-istanbul": "^0.6.3",
|
|
||||||
"rimraf": "^2.5.2",
|
"rimraf": "^2.5.2",
|
||||||
"source-map-loader": "^0.1.5",
|
"source-map-loader": "^0.1.5",
|
||||||
"style-loader": "^0.13.1",
|
"style-loader": "^0.13.1",
|
||||||
|
|
@ -97,7 +84,6 @@
|
||||||
"webpack": "webpack",
|
"webpack": "webpack",
|
||||||
"webpack-dev-server": "webpack-dev-server",
|
"webpack-dev-server": "webpack-dev-server",
|
||||||
"webdriver-manager": "webdriver-manager",
|
"webdriver-manager": "webdriver-manager",
|
||||||
"protractor": "protractor",
|
|
||||||
"clean": "npm cache clean && npm run rimraf -- node_modules doc typings coverage dist",
|
"clean": "npm cache clean && npm run rimraf -- node_modules doc typings coverage dist",
|
||||||
"clean:dist": "npm run rimraf -- dist",
|
"clean:dist": "npm run rimraf -- dist",
|
||||||
"preclean:install": "npm run clean",
|
"preclean:install": "npm run clean",
|
||||||
|
|
@ -107,7 +93,6 @@
|
||||||
"watch": "npm run watch:dev",
|
"watch": "npm run watch:dev",
|
||||||
"watch:dev": "npm run build:dev -- --watch",
|
"watch:dev": "npm run build:dev -- --watch",
|
||||||
"watch:dev:hmr": "npm run watch:dev -- --hot",
|
"watch:dev:hmr": "npm run watch:dev -- --hot",
|
||||||
"watch:test": "npm run test -- --auto-watch --no-single-run",
|
|
||||||
"watch:prod": "npm run build:prod -- --watch",
|
"watch:prod": "npm run build:prod -- --watch",
|
||||||
"build": "npm run build:dev",
|
"build": "npm run build:dev",
|
||||||
"prebuild:dev": "npm run clean:dist",
|
"prebuild:dev": "npm run clean:dist",
|
||||||
|
|
@ -122,16 +107,11 @@
|
||||||
"webdriver:start": "npm run webdriver-manager start",
|
"webdriver:start": "npm run webdriver-manager start",
|
||||||
"lint": "npm run tslint 'src/**/*.ts'",
|
"lint": "npm run tslint 'src/**/*.ts'",
|
||||||
"pree2e": "npm run webdriver:update -- --standalone",
|
"pree2e": "npm run webdriver:update -- --standalone",
|
||||||
"e2e": "npm run protractor",
|
|
||||||
"e2e:live": "npm run e2e -- --elementExplorer",
|
|
||||||
"pretest": "npm run lint",
|
"pretest": "npm run lint",
|
||||||
"test": "karma start",
|
|
||||||
"ci": "npm test && npm run e2e",
|
|
||||||
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
|
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
|
||||||
"start": "npm run server:dev",
|
"start": "npm run server:dev",
|
||||||
"start:hmr": "npm run server:dev:hmr",
|
"start:hmr": "npm run server:dev:hmr",
|
||||||
"postinstall": "npm run typings -- install",
|
"postinstall": "npm run typings -- install && bower install",
|
||||||
"preversion": "npm test",
|
|
||||||
"version": "npm run build",
|
"version": "npm run build",
|
||||||
"postversion": "git push && git push --tags"
|
"postversion": "git push && git push --tags"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue