39 lines
1004 B
JSON
39 lines
1004 B
JSON
{
|
|
"name": "code-crispies",
|
|
"version": "1.0.0",
|
|
"description": "An interactive platform for learning CSS through practical challenges",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "npm run dev",
|
|
"dev": "vite --host",
|
|
"build": "vite build",
|
|
"preview": "vite preview --debug",
|
|
"test": "vitest run",
|
|
"test.watch": "vitest watch",
|
|
"test.coverage": "vitest run --coverage",
|
|
"format": "prettier --write src/ tests/ schemas/ package.json vite.config.js vitest.config.js",
|
|
"format.lessons": "prettier --write lessons/*.json"
|
|
},
|
|
"keywords": [
|
|
"css",
|
|
"html",
|
|
"learning",
|
|
"interactive",
|
|
"education"
|
|
],
|
|
"author": "Michael Czechowski <mail@dailysh.it>",
|
|
"license": "Copyright 2025 (c) Michael Czechowski",
|
|
"devDependencies": {
|
|
"@testing-library/dom": "^10.4.0",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@vitest/coverage-v8": "^3.1.3",
|
|
"jsdom": "^26.1.0",
|
|
"prettier": "^3.5.3",
|
|
"vite": "^6.3.5",
|
|
"vitest": "^3.1.3"
|
|
},
|
|
"dependencies": {
|
|
"whatwg-fetch": "^3.6.20"
|
|
}
|
|
}
|