-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.57 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
{
"name": "wowhub.co.nz",
"description": "wowhub.co.nz, a personal project by Aiden Langley",
"author": "Aiden Langley",
"version": "1.0.4",
"license": "MIT",
"homepage": "https://wowhub.co.nz",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/aidenlangley/wowhub.co.nz"
},
"scripts": {
"dev": "svelte-kit dev",
"dev:host": "svelte-kit dev --host",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"prettier": "prettier --check --plugin-search-dir=. .",
"prettier:format": "prettier --write --plugin-search-dir=. .",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"stylelint": "stylelint '*/**.{svelte,css}'",
"stylelint:fix": "stylelint --fix '*/**.{svelte,css}'",
"lint": "npm run check && npm run prettier && npm run eslint && npm run stylelint",
"lint:fix": "npm run prettier:format && npm run eslint:fix && npm run stylelint:fix",
"clean": "rm -rf docs/",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"build:preview": "npm run clean && npm run build && npm run preview",
"deploy": "git add . && git commit -m '🚀 taking off...' && git push",
"lint:build:deploy": "npm run lint && npm run build && npm run deploy"
},
"devDependencies": {
"@sveltejs/adapter-netlify": "^1.0.0-next.56",
"@sveltejs/kit": "^1.0.0-next.324",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/typography": "^0.4.1",
"@types/postcss-import": "^14.0.0",
"@types/postcss-preset-env": "^6.7.3",
"@types/tailwindcss": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.2",
"cssnano": "^5.0.16",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.4.0",
"lazyframe": "^2.2.7",
"mdsvex": "^0.9.8",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"postcss-load-config": "^3.1.1",
"postcss-preset-env": "^7.0.1",
"prettier": "~2.2.1",
"prettier-plugin-svelte": "^2.6.0",
"rehype-external-links": "^1.0.1",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^2.0.0",
"remark-images": "^3.1.0",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^23.0.0",
"svelte": "^3.46.2",
"svelte-check": "^2.3.0",
"svelte-preprocess": "^4.10.2",
"svelte-seo": "^1.4.0",
"tailwindcss": "^2.2.19",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"type": "module"
}