2018-04-04 06:24:44 +03:00
|
|
|
{
|
|
|
|
"name": "angular-react",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2018-06-28 16:40:46 +03:00
|
|
|
"start": "ng serve",
|
2018-08-02 11:16:43 +03:00
|
|
|
"start:demo": "ng serve demo",
|
|
|
|
"start:docs": "ng serve docs",
|
2018-06-28 16:40:46 +03:00
|
|
|
"build": "ng build",
|
|
|
|
"build:github": "npm run clean:docs && npm run build:docs:github && npm run build:demo:github",
|
2018-08-02 11:16:43 +03:00
|
|
|
"build:demo": "ng build demo",
|
|
|
|
"build:demo:prod": "ng build demo --prod",
|
|
|
|
"build:demo:prod:package": "ng build demo-from-packages --prod",
|
2018-08-11 01:17:01 +03:00
|
|
|
"build:demo:github": "ng build demo --prod --output-path docs/demo --base-href https://microsoft.github.io/angular-react/demo/",
|
2018-08-02 11:16:43 +03:00
|
|
|
"build:docs": "ng build docs",
|
|
|
|
"build:docs:prod": "ng build docs --prod",
|
|
|
|
"build:docs:prod:package": "ng build docs-from-packages --prod",
|
2018-08-11 01:17:01 +03:00
|
|
|
"build:docs:github": "ng build docs --prod --output-path docs --base-href https://microsoft.github.io/angular-react/",
|
2018-06-28 16:40:46 +03:00
|
|
|
"build:libs": "npm run build:libs:core && npm run build:libs:fabric && npm run build:libs:semantic-ui",
|
|
|
|
"build:libs:core": "ng-packagr -p libs/core/package.json",
|
|
|
|
"postbuild:libs:core": "copyfiles README.md ./@angular-react/core",
|
|
|
|
"build:libs:fabric": "ts-node libs/fabric/build.ts",
|
|
|
|
"build:libs:semantic-ui": "ts-node libs/semantic-ui/build.ts",
|
2018-08-02 11:16:43 +03:00
|
|
|
"affected:apps": "./node_modules/.bin/nx affected:apps",
|
|
|
|
"affected:build": "./node_modules/.bin/nx affected:build",
|
|
|
|
"affected:e2e": "./node_modules/.bin/nx affected:e2e",
|
|
|
|
"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",
|
2018-06-28 16:40:46 +03:00
|
|
|
"prepublish:all": "npm run clean:publish && npm run build:libs",
|
|
|
|
"prepublish:core": "npm run prepublish:all && cd ./libs/core",
|
|
|
|
"prepublish:fabric": "npm run prepublish:all && cd ./libs/fabric",
|
|
|
|
"prepublish:semantic-ui": "npm run prepublish:all && cd ./libs/semantic-ui",
|
2018-07-02 22:41:17 +03:00
|
|
|
"publish:core": "npm publish ./@angular-react/core --access=public",
|
|
|
|
"publish:fabric": "npm publish ./@angular-react/fabric --access=public",
|
|
|
|
"publish:semantic-ui": "npm publish ./@angular-react/semantic-ui --access=public",
|
|
|
|
"publish:core:next": "npm publish ./@angular-react/core --access=public --tag next",
|
|
|
|
"publish:fabric:next": "npm publish ./@angular-react/fabric --access=public --tag next",
|
|
|
|
"publish:semantic-ui:next": "npm publish ./@angular-react/semantic-ui --access=public --tag next",
|
2018-08-01 21:38:26 +03:00
|
|
|
"publish:core:angular61": "npm publish ./@angular-react/core --access=public --tag angular61",
|
|
|
|
"publish:fabric:angular61": "npm publish ./@angular-react/fabric --access=public --tag angular61",
|
|
|
|
"publish:semantic-ui:angular61": "npm publish ./@angular-react/semantic-ui --access=public --tag angular61",
|
2018-06-28 16:40:46 +03:00
|
|
|
"clean:docs": "rimraf docs",
|
|
|
|
"clean:publish": "rimraf @angular-react",
|
|
|
|
"e2e": "ng e2e",
|
|
|
|
"lint": "./node_modules/.bin/nx lint && ng lint",
|
|
|
|
"ng": "ng",
|
2018-08-02 11:16:43 +03:00
|
|
|
"test": "ng test",
|
|
|
|
"dep-graph": "./node_modules/.bin/nx dep-graph",
|
|
|
|
"affected:dep-graph": "./node_modules/.bin/nx affected:dep-graph",
|
|
|
|
"workspace-schematic": "./node_modules/.bin/nx workspace-schematic",
|
|
|
|
"help": "./node_modules/.bin/nx help",
|
|
|
|
"affected:test": "./node_modules/.bin/nx affected:test",
|
|
|
|
"affected:lint": "./node_modules/.bin/nx affected:lint"
|
2018-04-04 06:24:44 +03:00
|
|
|
},
|
2018-04-04 14:05:42 +03:00
|
|
|
"private": false,
|
2018-04-04 06:24:44 +03:00
|
|
|
"dependencies": {
|
2018-08-02 11:16:43 +03:00
|
|
|
"@angular/animations": "6.1.0",
|
|
|
|
"@angular/cdk": "^6.4.2",
|
|
|
|
"@angular/common": "6.1.0",
|
|
|
|
"@angular/compiler": "6.1.0",
|
|
|
|
"@angular/core": "6.1.0",
|
|
|
|
"@angular/forms": "6.1.0",
|
|
|
|
"@angular/material": "^6.4.2",
|
|
|
|
"@angular/platform-browser": "6.1.0",
|
|
|
|
"@angular/platform-browser-dynamic": "6.1.0",
|
|
|
|
"@angular/router": "6.1.0",
|
2018-12-01 22:25:27 +03:00
|
|
|
"@ngrx/effects": "6.1.2",
|
|
|
|
"@ngrx/router-store": "6.1.2",
|
|
|
|
"@ngrx/store": "6.1.2",
|
|
|
|
"@ngrx/store-devtools": "6.1.2",
|
2018-08-02 11:16:43 +03:00
|
|
|
"core-js": "^2.5.4",
|
2018-12-01 21:47:31 +03:00
|
|
|
"geteventlisteners": "^1.0.6",
|
2018-12-01 22:25:27 +03:00
|
|
|
"ngrx-store-freeze": "^0.2.4",
|
2018-09-26 12:48:10 +03:00
|
|
|
"office-ui-fabric-react": "6.73.0",
|
2018-08-02 11:16:43 +03:00
|
|
|
"react": "^16.4.1",
|
|
|
|
"react-dom": "^16.4.1",
|
|
|
|
"rxjs": "6.2.2",
|
|
|
|
"rxjs-compat": "6.2.2",
|
|
|
|
"semantic-ui-react": "^0.82.1",
|
2018-04-11 02:29:10 +03:00
|
|
|
"web-animations-js": "^2.3.1",
|
2018-08-02 11:16:43 +03:00
|
|
|
"zone.js": "^0.8.26"
|
2018-04-04 06:24:44 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-08-02 11:16:43 +03:00
|
|
|
"@angular-devkit/build-angular": "~0.7.1",
|
|
|
|
"@angular-devkit/core": "0.7.1",
|
|
|
|
"@angular-devkit/schematics": "0.7.1",
|
|
|
|
"@angular/cli": "6.1.1",
|
|
|
|
"@angular/compiler-cli": "6.1.0",
|
|
|
|
"@angular/language-service": "6.1.0",
|
2018-12-01 22:25:27 +03:00
|
|
|
"@ngrx/schematics": "6.1.2",
|
|
|
|
"@nrwl/nx": "^7.1.1",
|
|
|
|
"@nrwl/schematics": "^7.1.1",
|
2018-10-19 22:10:39 +03:00
|
|
|
"@types/classnames": "^2.2.6",
|
2018-07-19 10:48:11 +03:00
|
|
|
"@types/css-to-style": "^1.2.0",
|
2018-08-02 11:16:43 +03:00
|
|
|
"@types/jasmine": "~2.8.6",
|
2018-12-01 22:25:27 +03:00
|
|
|
"@types/jasminewd2": "~2.0.6",
|
|
|
|
"@types/node": "~10.12.9",
|
2018-08-02 11:16:43 +03:00
|
|
|
"@types/react": "^16.4.7",
|
2018-12-01 22:25:27 +03:00
|
|
|
"@types/react-dom": "^16.0.11",
|
2018-10-19 22:13:21 +03:00
|
|
|
"@types/stylenames": "^1.1.0",
|
2018-10-19 22:10:39 +03:00
|
|
|
"classnames": "^2.2.6",
|
2018-12-01 22:25:27 +03:00
|
|
|
"codelyzer": "~4.5.0",
|
|
|
|
"copyfiles": "^2.1.0",
|
|
|
|
"css-to-style": "^1.2.1",
|
|
|
|
"jasmine-core": "~3.3.0",
|
|
|
|
"jasmine-marbles": "0.4.0",
|
2018-04-04 06:24:44 +03:00
|
|
|
"jasmine-spec-reporter": "~4.2.1",
|
2018-12-01 22:25:27 +03:00
|
|
|
"karma": "~3.1.1",
|
2018-04-04 06:24:44 +03:00
|
|
|
"karma-chrome-launcher": "~2.2.0",
|
2018-08-02 11:16:43 +03:00
|
|
|
"karma-coverage-istanbul-reporter": "~2.0.1",
|
2018-12-01 22:25:27 +03:00
|
|
|
"karma-jasmine": "~2.0.0",
|
2018-08-02 11:16:43 +03:00
|
|
|
"karma-jasmine-html-reporter": "^1.2.0",
|
|
|
|
"ng-packagr": "^3.0.6",
|
2018-12-01 22:25:27 +03:00
|
|
|
"prettier": "1.15.3",
|
2018-08-02 11:16:43 +03:00
|
|
|
"protractor": "~5.4.0",
|
2018-04-18 05:07:21 +03:00
|
|
|
"rimraf": "^2.6.2",
|
2018-10-19 22:13:21 +03:00
|
|
|
"stylenames": "^1.1.6",
|
2018-12-01 22:25:27 +03:00
|
|
|
"ts-node": "~7.0.1",
|
2018-08-02 11:16:43 +03:00
|
|
|
"tsickle": "^0.32.1",
|
2018-04-17 09:08:57 +03:00
|
|
|
"tslib": "^1.9.0",
|
2018-08-02 11:16:43 +03:00
|
|
|
"tslint": "~5.11.0",
|
|
|
|
"typescript": "^2.9.2"
|
2018-04-04 06:24:44 +03:00
|
|
|
}
|
|
|
|
}
|