-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.61 KB
/
package.json
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
94
95
{
"name": "david-blog",
"private": true,
"description": "David Lacourt's personal blog, powered by SvelteKit and Markdown",
"version": "3.0.0",
"type": "module",
"author": "David Lacourt <[email protected]>",
"bugs": {
"url": "https://github.com/doppelganger9/blog/issues"
},
"homepage": "https://github.com/doppelganger9/blog#readme",
"keywords": [
"svelte",
"sapper",
"markdown",
"blog",
"javascript",
"html",
"css",
"e2e",
"jamstack"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/doppelganger9/blog.git"
},
"scripts": {
"postinstall": "npx patch-package && cd lambda && npm install",
"dev": "vite dev",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"build": "run-p build:*",
"build:app": "vite build",
"preview": "vite preview",
"serve": "npx http-server build -s",
"start": "run-p start:*",
"start:app": "npm run build",
"cy:run": "cypress run",
"cy:run:no-coverage": "cypress run --env coverage=false",
"cy:open": "cypress open",
"test": "start-server-and-test serve http://127.0.0.1:8080 cy:run:no-coverage",
"start:lambda": "cd lambda && npm start",
"migration:check": "npm run build && npm run test"
},
"devDependencies": {
"@akebifiky/remark-simple-plantuml": "1.0.2",
"@cypress/code-coverage": "3.13.11",
"@remark-embedder/core": "3.0.3",
"@remark-embedder/transformer-oembed": "5.0.1",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "2.17.1",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"cypress": "13.17.0",
"elizabot": "0.0.3",
"local-cypress": "1.2.6",
"mdsvex": "0.12.3",
"npm-run-all2": "6.2.6",
"patch-package": "8.0.0",
"prism-svelte": "0.5.0",
"prismjs": "1.29.0",
"rehype-add-classes": "1.0.0",
"rehype-autolink-headings": "7.1.0",
"rehype-figure": "1.0.1",
"rehype-slug": "6.0.0",
"rehype-urls": "1.2.0",
"remark-abbr": "1.4.2",
"remark-twemoji": "0.1.1",
"rxjs": "7.8.1",
"start-server-and-test": "2.0.10",
"svelte": "4.2.19",
"svelte-check": "4.1.4",
"svelte-preprocess": "6.0.3",
"tslib": "2.8.1",
"twemoji": "14.0.2",
"typescript": "5.7.3",
"unist-util-visit": "5.0.0",
"vite": "^5.0.0",
"vite-plugin-istanbul": "6.0.2"
},
"nyc": {
"cache": false,
"all": true,
"include": [
"src/**/*.js",
"src/**/*.svelte"
],
"exclude": [
"coverage/**",
"build/**",
"cypress/**"
]
}
}