-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"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 2026 (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": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.4",
"@emmetio/codemirror6-plugin": "^0.4.0",
"@supabase/supabase-js": "^2.90.1",
"codemirror": "^6.0.2",
"marked": "^17.0.1",
"whatwg-fetch": "^3.6.20"
}
}