-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.78 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
{
"name": "random-ramblings-of-a-ranga",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "vite package",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"prelint": "npm run format",
"format": "prettier --write --plugin-search-dir=. ."
},
"devDependencies": {
"@playwright/test": "^1.25.2",
"@sveltejs/adapter-netlify": "^1.0.0-next.78",
"@sveltejs/kit": "^1.0.0-next.484",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@tsconfig/svelte": "^3.0.0",
"@types/cookie": "^0.5.1",
"@types/html-minifier": "^4.0.2",
"@types/js-cookie": "^3.0.2",
"@types/path-parse": "^1.0.19",
"@types/prismjs": "^1.26.0",
"@types/rss": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"autoprefixer": "^10.4.11",
"cookie": "^0.5.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"html-minifier": "^4.0.0",
"js-cookie": "^3.0.1",
"path-parse": "^1.0.7",
"postcss": "^8.4.16",
"postcss-scss": "^4.0.5",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prismjs": "^1.29.0",
"rss": "^1.2.2",
"sass": "^1.54.9",
"svelte": "^3.50.1",
"svelte-check": "^2.9.0",
"svelte-dark-mode": "^2.1.0",
"svelte-markdown": "^0.2.3",
"svelte-preprocess": "^4.10.7",
"svelte-prism": "^1.1.6",
"tailwindcss": "^3.1.8",
"ts-dedent": "^2.2.0",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
}
}