-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "book-tracker",
"version": "2.0.0",
"type": "module",
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"dev": "vite dev",
"build": "vite build && node sync-profile-shell.ts",
"preview": "vite preview",
"test": "npm run check && npm run test:unit && npm run test:rules && npm run test:pwa && npm run test:functions",
"test:unit": "node --import ./tests/setup.ts --test tests/test-containment.test.* tests/cached-readable.test.* tests/decoders.test.* tests/finished.test.* tests/migrate-lib.test.* tests/migrate-connect.test.* tests/migration-api-envelopes.test.* tests/reading-progress-source-migration.test.* tests/deployment-docs.test.* tests/auth-persistence.test.* tests/authors.test.* tests/book-form.test.* tests/auth-failure.test.* tests/profile-read.test.* tests/offline-write.test.* tests/session-task.test.* tests/reading-session-mutation.test.* tests/stats.test.* tests/links.test.* tests/isbn.test.* tests/book-metadata.test.* tests/google-books.test.* tests/metadata-health.test.* tests/nasjonalbiblioteket.test.* tests/goodreads.test.* tests/sessions.test.* tests/format.test.* tests/toggl.test.* tests/validation.test.*",
"test:rules": "npm --prefix functions run build && npm exec --yes --package firebase-tools@15.24.0 -- firebase emulators:exec --only firestore,auth --project book-tracker-rules-test \"node --import ./tests/setup.ts --test tests/reading-progress-migration-emulator.test.* && node --import ./tests/setup.ts --test tests/firestore-rules.test.* tests/toggl-transaction.test.* tests/auth-emulator.test.*\"",
"test:e2e": "npm exec --yes --package firebase-tools@15.24.0 -- firebase emulators:exec --only firestore,auth --project book-tracker-d8f24 \"npm run test:e2e:browser\"",
"test:e2e:browser": "playwright test",
"test:bundle": "node --import ./tests/setup.ts --test tests/bundle-budget.test.*",
"test:artifacts": "node --import ./tests/setup.ts --test tests/build-artifacts.test.*",
"test:pwa": "node --import ./tests/setup.ts --test tests/pwa.test.*",
"test:functions": "npm --prefix functions test",
"validate": "npm test && npm run build && npm run test:artifacts && npm run test:bundle && npm audit --omit=dev && npm --prefix functions audit",
"check": "npm run check:app && npm run check:node && npm run check:service-worker",
"check:app": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:node": "tsc --noEmit -p tsconfig.node.json",
"check:service-worker": "tsc --noEmit -p tsconfig.service-worker.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^5.0.2",
"@playwright/test": "^1.62.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.70.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/node": "22.20.1",
"@typescript-eslint/types": "^8.64.0",
"firebase-admin": "^14.2.0",
"sass": "^1.101.0",
"svelte": "^5.56.6",
"svelte-awesome": "^3.3.5",
"svelte-check": "^4.7.3",
"typescript": "^5.9.3",
"vite": "^7.3.6"
},
"dependencies": {
"bootstrap": "5.3.8",
"firebase": "^12.16.0",
"simple-icons": "^16.28.0"
},
"overrides": {
"cookie": "0.7.2",
"uuid": "^11.1.1"
}
}