mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-26 19:26:10 +01:00
chore: initial commit
This commit is contained in:
commit
1fb884a633
30 changed files with 6568 additions and 0 deletions
71
package.json
Normal file
71
package.json
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
{
|
||||
"name": "nga-demo",
|
||||
"version": "2.0.0-alpha.0",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"ngh": "ngh",
|
||||
"rimraf": "rimraf",
|
||||
"start": "ng serve --hmr",
|
||||
"start:aot": "ng serve --aot",
|
||||
"build": "npm run clean:dist && ng build",
|
||||
"build:prod": "npm run build -- --prod",
|
||||
"build:prod:aot": "npm run build -- --aot",
|
||||
"build:ci": "npm-run-all -p -r build:prod build:prod:aot",
|
||||
"build:ghpages": "npm run build:prod:aot -- --base-href \"https://akveo.github.io/ng2-admin/\" && ngh",
|
||||
"test": "ng test -sr",
|
||||
"test:coverage": "npm run clean:coverage && ng test -sr -cc",
|
||||
"lint": "ng lint",
|
||||
"lint:styles": "stylelint ./src/**/*.scss",
|
||||
"lint:ci": "npm run lint && npm run lint:styles",
|
||||
"pree2e": "webdriver-manager update --standalone false --gecko false",
|
||||
"e2e": "ng e2e",
|
||||
"clean:dist": "npm run rimraf -- dist",
|
||||
"clean:coverage": "npm run rimraf -- coverage"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "4.0.0",
|
||||
"@angular/common": "4.0.0",
|
||||
"@angular/compiler": "4.0.0",
|
||||
"@angular/core": "4.0.0",
|
||||
"@angular/forms": "4.0.0",
|
||||
"@angular/http": "4.0.0",
|
||||
"@angular/platform-browser": "4.0.0",
|
||||
"@angular/platform-browser-dynamic": "4.0.0",
|
||||
"@angular/router": "4.0.0",
|
||||
"@ng-bootstrap/ng-bootstrap": "1.0.0-alpha.22",
|
||||
"bootstrap": "4.0.0-alpha.6",
|
||||
"core-js": "2.4.1",
|
||||
"font-awesome": "4.7.0",
|
||||
"ionicons": "2.0.1",
|
||||
"normalize.css": "6.0.0",
|
||||
"rxjs": "5.1.1",
|
||||
"tether": "1.4.0",
|
||||
"zone.js": "0.8.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular/cli": "1.0.0",
|
||||
"@angular/compiler-cli": "4.0.0",
|
||||
"@angular/platform-server": "4.0.0",
|
||||
"@types/jasmine": "2.5.38",
|
||||
"@types/node": "6.0.63",
|
||||
"angular-cli-ghpages": "0.5.0",
|
||||
"codelyzer": "2.0.1",
|
||||
"jasmine-core": "2.5.2",
|
||||
"jasmine-spec-reporter": "3.2.0",
|
||||
"karma": "1.4.1",
|
||||
"karma-chrome-launcher": "2.0.0",
|
||||
"karma-cli": "1.0.1",
|
||||
"karma-coverage-istanbul-reporter": "0.2.3",
|
||||
"karma-jasmine": "1.1.0",
|
||||
"karma-jasmine-html-reporter": "0.2.2",
|
||||
"protractor": "5.1.1",
|
||||
"rimraf": "2.6.1",
|
||||
"stylelint": "7.8.0",
|
||||
"ts-node": "2.0.0",
|
||||
"tslint": "4.5.1",
|
||||
"tslint-eslint-rules": "3.4.0",
|
||||
"typescript": "2.2.1"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue