-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.09 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
{
"name": "my-app",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"package": "svelte-kit package",
"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": "vitest"
},
"devDependencies": {
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@tailwindcss/typography": "^0.5.7",
"@types/node": "^17.0.45",
"@types/node-fetch": "^2.6.2",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"cssnano-preset-advanced": "^5.3.9",
"dotenv": "^16.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"highlight.js": "^11.6.0",
"highlightjs-svelte": "^1.0.6",
"node-fetch": "^3.2.10",
"node-sass": "^7.0.3",
"npm-run-all": "^4.1.5",
"nprogress": "^0.2.0",
"postcss": "^8.4.18",
"postcss-cli": "^9.1.0",
"postcss-load-config": "^3.1.4",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"sass": "^1.56.0",
"svelte": "^3.52.0",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.2.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "~4.5.5",
"vite": "^3.2.2",
"vite-plugin-markdown": "^2.1.0",
"vitest": "^0.6.3",
"vitest-svelte-kit": "^0.0.6"
},
"type": "module",
"dependencies": {
"svelte-file-dropzone": "^1.0.0"
}
}