-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.07 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.07 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
{
"name": "devbootllm-server",
"version": "1.0.0",
"description": "Server to execute code for the devbootLLM app.",
"main": "server.js",
"license": "Apache-2.0",
"author": "Ocean Bennett",
"scripts": {
"start": "node server.js",
"smoke": "node scripts/smoke-test.mjs",
"test": "npm run smoke",
"seed": "node scripts/seed-db.js",
"validate:lessons": "node scripts/validate-lessons.mjs",
"build:css": "tailwindcss -i ./tailwind.input.css -o ./public/css/tailwind.css --minify",
"check:validate": "node scripts/validate-lessons.mjs",
"check:solutions": "python scripts/validate_all_lessons.py",
"check:quick": "python scripts/quick_validation_test.py",
"check:quality": "python scripts/check_lesson_quality.py",
"check:tutorials": "python scripts/check_tutorial_quality.py",
"check:duplicates": "python scripts/find_duplicate_solutions.py",
"check:all": "python scripts/run_all_checks.py"
},
"dependencies": {
"better-sqlite3": "^9.4.0",
"express": "^4.18.2"
},
"devDependencies": {
"tailwindcss": "^3.4.4"
}
}