-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) Β· 3 KB
/
package.json
File metadata and controls
94 lines (94 loc) Β· 3 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
93
94
{
"name": "chipsandcode",
"version": "0.0.1",
"license": "MIT",
"main": "src/backend/index.ts",
"scripts": {
"start": "wrangler pages dev --kv=KV -- npm run dev",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"test": "npm run check && npm run test:unit && npm run test:cy",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest --ui --coverage",
"test:cy": "cypress run",
"test:cy:open": "cypress open",
"railroad": "nearley-railroad",
"wrangler": "wrangler",
"postinstall": "svelte-kit sync"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@frsource/cypress-plugin-visual-regression-diff": "^3.3.10",
"@popperjs/core": "^2.11.8",
"@rollup/pluginutils": "^5.0.2",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.22.3",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/cypress": "^9.0.0",
"@testing-library/svelte": "^4.0.3",
"@types/cookie": "^0.5.1",
"@types/gapi": "0.0.44",
"@types/http-errors": "^2.0.1",
"@types/katex": "^0.16.2",
"@types/nearley": "^2.11.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vite-pwa/sveltekit": "^0.2.5",
"@vitest/coverage-v8": "^0.34.3",
"@vitest/ui": "^0.34.3",
"@zerodevx/svelte-img": "^1.2.11",
"autoprefixer": "^10.4.14",
"axe-core": "^4.8.0",
"cssnano": "^6.0.1",
"cypress": "^12.7.4",
"cypress-axe": "^1.5.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"katex": "^0.16.8",
"moo": "^0.5.2",
"nearley": "^2.20.1",
"postcss": "^8.4.26",
"postcss-load-config": "^4.0.1",
"prettier": "2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^3.59.2",
"svelte-check": "^3.4.6",
"svelte-popperjs": "^1.3.2",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.3.3",
"ts-loader": "^9.4.4",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vite-plugin-pwa": "^0.16.4",
"vitest": "^0.34.3"
},
"dependencies": {
"@markdoc/markdoc": "^0.3.2",
"@rgossiaux/svelte-headlessui": "^2.0.0",
"@steeze-ui/heroicons": "^2.2.3",
"@steeze-ui/remix-icons": "^1.1.0",
"@steeze-ui/svelte-icon": "~1.4.1",
"@zip.js/zip.js": "^2.7.20",
"cookie": "^0.5.0",
"daisyui": "^3.5.0",
"date-fns": "^2.30.0",
"denque": "^2.1.0",
"monaco-editor": "^0.39.0",
"screenfull": "^6.0.2",
"svelte-confetti": "^1.2.4",
"wrangler": "3.2.0",
"yaml": "^2.3.1",
"zod": "^3.22.3"
},
"overrides": {
"unist-util-find": "1.0.2"
},
"type": "module"
}