-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.23 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.23 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
{
"name": "@scormflow/server",
"version": "0.0.1",
"description": "Headless SCORM, xAPI, and cmi5 engine with built-in LRS, webhooks, and AI analytics. Embed in Node or run via Docker.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/scormflow/scorm-engine.git"
},
"homepage": "https://github.com/scormflow/scorm-engine#readme",
"bugs": {
"url": "https://github.com/scormflow/scorm-engine/issues"
},
"keywords": [
"scorm",
"scorm-1-2",
"scorm-2004",
"xapi",
"tin-can-api",
"cmi5",
"lrs",
"learning-record-store",
"elearning",
"lms",
"fastify",
"typescript",
"headless",
"api-first"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist",
"prisma/schema.prisma",
"prisma/migrations",
"openapi/openapi.yaml",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:studio": "prisma studio",
"openapi:lint": "redocly lint openapi/openapi.yaml",
"prepublishOnly": "npm run typecheck && npm run build",
"release:dry": "npm publish --dry-run"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/jwt": "^10.1.0",
"@fastify/multipart": "^10.0.0",
"@fastify/sensible": "^6.0.4",
"@prisma/client": "^5.20.0",
"fast-xml-parser": "^5.8.0",
"fastify": "^5.8.5",
"pino": "^9.4.0",
"yauzl": "^3.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/node": "^20.16.5",
"@types/yauzl": "^2.10.3",
"adm-zip": "^0.5.17",
"prisma": "^5.20.0",
"supertest": "^7.0.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^4.1.7"
}
}