-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "cofob-ru",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"description": "svelte-powered website",
"homepage": "https://cofob.dev/",
"scripts": {
"dev": "vite dev",
"build": "DEPLOY_TARGET=node vite build",
"build:static": "DEPLOY_TARGET=static vite build && cp ./build/200.html ./build/ipfs-404.html && cp ./build/200.html ./build/index.html",
"build:cloudflare": "DEPLOY_TARGET=cloudflare vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"postinstall": "svelte-kit sync",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. .",
"start": "npm run build && npm run preview"
},
"devDependencies": {
"@sveltejs/adapter-cloudflare": "1.0.0-next.33",
"@sveltejs/adapter-node": "1.0.0-next.90",
"@sveltejs/adapter-static": "1.0.0-next.43",
"@sveltejs/kit": "1.0.0-next.481",
"@types/nprogress": "0.2.0",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"autoprefixer": "10.4.10",
"cssnano": "5.1.13",
"cssnano-preset-advanced": "5.3.8",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-svelte3": "latest",
"postcss": "8.4.31",
"postcss-discard-comments": "latest",
"postcss-import": "16.0.0",
"prettier": "^2",
"prettier-plugin-svelte": "2.7.0",
"svelte": "3.50.1",
"svelte-check": "2.9.0",
"svelte-heros": "2.3.5",
"svelte-preprocess": "4.10.7",
"tailwindcss": "3.1.8",
"typescript": "4.8.3",
"vite": "3.2.10"
},
"dependencies": {
"nprogress": "latest"
}
}