-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.95 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "assetnode",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:server": "tsx watch src/server/index.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:server\"",
"dev:mock": "concurrently \"npm run dev\" \"MOCK_INTEGRATIONS=true MOCK_SCENARIO=HAPPY_PATH NODE_OPTIONS='--localstorage-file=.msw-localstorage' tsx watch src/server/index.ts\"",
"dev:mcp": "tsx src/mcp/server.ts",
"build": "vue-tsc && vite build",
"build:prerender": "vue-tsc && vite build && tsx scripts/prerender.ts",
"preview": "vite preview",
"db:setup": "tsx src/db/migrations/initial-setup.ts",
"db:seed": "tsx src/db/seed.ts",
"seed:super-admin": "tsx scripts/seed-super-admin.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/formbody": "^8.0.2",
"@fastify/helmet": "^13.0.2",
"@fastify/multipart": "^9.4.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.0.0",
"@fastify/type-provider-typebox": "^6.1.0",
"@google/generative-ai": "^0.1.3",
"@modelcontextprotocol/sdk": "^1.27.1",
"@primevue/themes": "^4.5.4",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.2",
"@sinclair/typebox": "^0.32.3",
"@types/papaparse": "^5.3.15",
"@types/toposort": "^2.0.7",
"@vue-flow/background": "^1.3.2",
"@vue-flow/controls": "^1.1.3",
"@vue-flow/core": "^1.48.2",
"@vue-flow/minimap": "^1.5.4",
"bcrypt": "^6.0.0",
"cheerio": "^1.0.0",
"csv-parse": "^5.6.0",
"csv-parser": "^3.2.0",
"dotenv": "^17.3.1",
"driver.js": "^1.4.0",
"esbuild": "^0.27.3",
"exceljs": "^4.4.0",
"fastify": "^5.7.4",
"fastify-plugin": "^5.1.0",
"json-rules-engine": "^7.3.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^8.1.1",
"nodemailer": "^8.0.1",
"papaparse": "^5.5.2",
"pdfkit": "^0.17.2",
"pinia": "^2.1.7",
"primeflex": "^4.0.0",
"primeicons": "^7.0.0",
"primevue": "^4.5.4",
"qrcode": "^1.5.4",
"toposort": "^2.0.2",
"tsx": "^4.7.0",
"vue": "^3.4.15",
"vue-i18n": "^11.2.8",
"vue-router": "^4.2.5",
"xml-crypto": "^6.1.2"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^24.0.1",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.8",
"@faker-js/faker": "^10.3.0",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.11.10",
"@types/nodemailer": "^7.0.10",
"@types/pdfkit": "^0.17.5",
"@types/qrcode": "^1.5.6",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/test-utils": "^2.4.6",
"concurrently": "^8.2.2",
"cypress": "^15.13.0",
"happy-dom": "^20.8.9",
"msw": "^2.12.10",
"pino-pretty": "^13.1.3",
"puppeteer": "^24.38.0",
"typescript": "^5.3.3",
"vite": "^7.3.1",
"vitest": "^4.1.2",
"vue-tsc": "^3.2.5"
}
}