[READ-ONLY] Mirror of https://github.com/danielroe/ripple-framework. Ripple is the presentation layer for building websites on the DPC Single Digital Presence platform.
0

Configure Feed

Select the types of activity you want to include in your feed.

ripple-framework / examples / nuxt-app / package.json
1.8 kB 40 lines
1{ 2 "private": true, 3 "packageManager": "pnpm@8.0.0", 4 "license": "Apache-2.0", 5 "name": "nuxt-app", 6 "version": "2.1.0-alpha.77", 7 "scripts": { 8 "dev": "nuxt dev", 9 "dev:mock": "NUXT_PUBLIC_API_URL=http://localhost:3001 concurrently 'pnpm mockserver' 'pnpm dev'", 10 "build": "nuxi build", 11 "compile": "tsc --build", 12 "start": "node .output/server/index.mjs", 13 "start:mock": "NUXT_PUBLIC_API_URL=http://localhost:3001 concurrently 'pnpm mockserver' 'pnpm start'", 14 "mockserver": "nuxt-ripple mock ./test/fixtures -S ./test/fixtures/site/reference.json -R mock-routes.json", 15 "cy:open": "cypress open --e2e --browser electron", 16 "cy:run": "cypress run", 17 "test:ci": "NUXT_PUBLIC_API_URL=http://localhost:3001 start-test start 'http-get://localhost:3000/api/tide/site?id=8888' 'cy:run'", 18 "test:integration": "start-test 'NUXT_PUBLIC_API_URL=http://localhost:3001 pnpm dev' 'http-get://localhost:3000/api/tide/site?id=8888' 'cy:open'", 19 "lighthouse": "unlighthouse-ci --site http://localhost:3000", 20 "lighthouse:ci": "start-test start:mock 3000 lighthouse" 21 }, 22 "dependencies": { 23 "@dpc-sdp/nuxt-ripple": "workspace:*", 24 "@dpc-sdp/ripple-tide-event": "workspace:*", 25 "@dpc-sdp/ripple-tide-grant": "workspace:*", 26 "@dpc-sdp/ripple-tide-landing-page": "workspace:*", 27 "@dpc-sdp/ripple-tide-media": "workspace:*", 28 "@dpc-sdp/ripple-tide-news": "workspace:*", 29 "@dpc-sdp/ripple-tide-publication": "workspace:*", 30 "@dpc-sdp/ripple-tide-search": "workspace:*" 31 }, 32 "devDependencies": { 33 "@dpc-sdp/ripple-tide-api": "workspace:*", 34 "@dpc-sdp/ripple-test-utils": "workspace:*", 35 "@unlighthouse/cli": "^0.4.9", 36 "node-fetch-native": "^1.0.2", 37 "nuxt": "3.3.2", 38 "start-server-and-test": "^2.0.0" 39 } 40}