├── .editorconfig ├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── README.md ├── apps ├── .gitkeep ├── agent-api │ ├── jest.config.js │ ├── src │ │ ├── app │ │ │ └── .gitkeep │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── agent-e2e │ ├── .eslintrc │ ├── cypress.json │ ├── src │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── app.spec.ts │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── index.ts │ ├── tsconfig.e2e.json │ └── tsconfig.json ├── agent │ ├── .eslintrc │ ├── browserslist │ ├── jest.config.js │ ├── proxy.conf.json │ ├── src │ │ ├── app │ │ │ ├── app.spec.tsx │ │ │ └── app.tsx │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.tsx │ │ └── polyfills.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── api │ ├── jest.config.js │ ├── src │ │ ├── app │ │ │ └── .gitkeep │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tickets-e2e │ ├── .eslintrc │ ├── cypress.json │ ├── src │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── app.spec.ts │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── index.ts │ ├── tsconfig.e2e.json │ └── tsconfig.json └── tickets │ ├── .eslintrc │ ├── browserslist │ ├── jest.config.js │ ├── proxy.conf.json │ ├── src │ ├── app │ │ ├── app.spec.tsx │ │ └── app.tsx │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.tsx │ └── polyfills.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── jest.config.js ├── libs ├── .gitkeep ├── data │ ├── README.md │ ├── jest.config.js │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── data.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── tslint.json └── ticket-list │ ├── .eslintrc │ ├── README.md │ ├── jest.config.js │ ├── src │ ├── index.ts │ └── lib │ │ └── ticket-list │ │ ├── ticket-list.spec.tsx │ │ └── ticket-list.tsx │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nx.json ├── package.json ├── tools ├── schematics │ └── .gitkeep └── tsconfig.tools.json ├── tsconfig.json ├── tslint.json ├── workspace.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/agent-api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-api/jest.config.js -------------------------------------------------------------------------------- /apps/agent-api/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/agent-api/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/agent-api/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/agent-api/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false 3 | }; 4 | -------------------------------------------------------------------------------- /apps/agent-api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-api/src/main.ts -------------------------------------------------------------------------------- /apps/agent-api/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-api/tsconfig.app.json -------------------------------------------------------------------------------- /apps/agent-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-api/tsconfig.json -------------------------------------------------------------------------------- /apps/agent-api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-api/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/agent-api/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-api/tslint.json -------------------------------------------------------------------------------- /apps/agent-e2e/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-e2e/.eslintrc -------------------------------------------------------------------------------- /apps/agent-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-e2e/cypress.json -------------------------------------------------------------------------------- /apps/agent-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/agent-e2e/src/integration/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-e2e/src/integration/app.spec.ts -------------------------------------------------------------------------------- /apps/agent-e2e/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-e2e/src/plugins/index.js -------------------------------------------------------------------------------- /apps/agent-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/agent-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/agent-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/agent-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/agent-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/agent/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/.eslintrc -------------------------------------------------------------------------------- /apps/agent/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/browserslist -------------------------------------------------------------------------------- /apps/agent/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/jest.config.js -------------------------------------------------------------------------------- /apps/agent/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/proxy.conf.json -------------------------------------------------------------------------------- /apps/agent/src/app/app.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/src/app/app.spec.tsx -------------------------------------------------------------------------------- /apps/agent/src/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/src/app/app.tsx -------------------------------------------------------------------------------- /apps/agent/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/agent/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/agent/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/agent/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/src/favicon.ico -------------------------------------------------------------------------------- /apps/agent/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/src/index.html -------------------------------------------------------------------------------- /apps/agent/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/src/main.tsx -------------------------------------------------------------------------------- /apps/agent/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/src/polyfills.ts -------------------------------------------------------------------------------- /apps/agent/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/tsconfig.app.json -------------------------------------------------------------------------------- /apps/agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/tsconfig.json -------------------------------------------------------------------------------- /apps/agent/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/agent/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/api/jest.config.js -------------------------------------------------------------------------------- /apps/api/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/api/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false 3 | }; 4 | -------------------------------------------------------------------------------- /apps/api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/api/src/main.ts -------------------------------------------------------------------------------- /apps/api/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/api/tsconfig.app.json -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/api/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/api/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/api/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/api/tslint.json -------------------------------------------------------------------------------- /apps/tickets-e2e/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets-e2e/.eslintrc -------------------------------------------------------------------------------- /apps/tickets-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets-e2e/cypress.json -------------------------------------------------------------------------------- /apps/tickets-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/tickets-e2e/src/integration/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets-e2e/src/integration/app.spec.ts -------------------------------------------------------------------------------- /apps/tickets-e2e/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets-e2e/src/plugins/index.js -------------------------------------------------------------------------------- /apps/tickets-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1'); 2 | -------------------------------------------------------------------------------- /apps/tickets-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/tickets-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/tickets-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/tickets-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/tickets/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/.eslintrc -------------------------------------------------------------------------------- /apps/tickets/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/browserslist -------------------------------------------------------------------------------- /apps/tickets/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/jest.config.js -------------------------------------------------------------------------------- /apps/tickets/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/proxy.conf.json -------------------------------------------------------------------------------- /apps/tickets/src/app/app.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/src/app/app.spec.tsx -------------------------------------------------------------------------------- /apps/tickets/src/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/src/app/app.tsx -------------------------------------------------------------------------------- /apps/tickets/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/tickets/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /apps/tickets/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/tickets/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/src/favicon.ico -------------------------------------------------------------------------------- /apps/tickets/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/src/index.html -------------------------------------------------------------------------------- /apps/tickets/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/src/main.tsx -------------------------------------------------------------------------------- /apps/tickets/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/src/polyfills.ts -------------------------------------------------------------------------------- /apps/tickets/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/tsconfig.app.json -------------------------------------------------------------------------------- /apps/tickets/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/tsconfig.json -------------------------------------------------------------------------------- /apps/tickets/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/apps/tickets/tsconfig.spec.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/jest.config.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/data/README.md -------------------------------------------------------------------------------- /libs/data/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/data/jest.config.js -------------------------------------------------------------------------------- /libs/data/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/data'; 2 | -------------------------------------------------------------------------------- /libs/data/src/lib/data.ts: -------------------------------------------------------------------------------- 1 | export type Ticket = { 2 | title: string; 3 | id: number; 4 | }; 5 | -------------------------------------------------------------------------------- /libs/data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/data/tsconfig.json -------------------------------------------------------------------------------- /libs/data/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/data/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/data/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/data/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/data/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/data/tslint.json -------------------------------------------------------------------------------- /libs/ticket-list/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/ticket-list/.eslintrc -------------------------------------------------------------------------------- /libs/ticket-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/ticket-list/README.md -------------------------------------------------------------------------------- /libs/ticket-list/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/ticket-list/jest.config.js -------------------------------------------------------------------------------- /libs/ticket-list/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/ticket-list/src/index.ts -------------------------------------------------------------------------------- /libs/ticket-list/src/lib/ticket-list/ticket-list.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/ticket-list/src/lib/ticket-list/ticket-list.spec.tsx -------------------------------------------------------------------------------- /libs/ticket-list/src/lib/ticket-list/ticket-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/ticket-list/src/lib/ticket-list/ticket-list.tsx -------------------------------------------------------------------------------- /libs/ticket-list/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/ticket-list/tsconfig.json -------------------------------------------------------------------------------- /libs/ticket-list/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/ticket-list/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/ticket-list/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/libs/ticket-list/tsconfig.spec.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/package.json -------------------------------------------------------------------------------- /tools/schematics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/tslint.json -------------------------------------------------------------------------------- /workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/workspace.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrwl/full-stack-react-example-app/HEAD/yarn.lock --------------------------------------------------------------------------------