forked from KlasenK/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.58 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
73
74
75
76
77
78
79
80
81
{
"name": "gitpod-website",
"description": "Gitpod.io Website",
"version": "2.0.0",
"private": true,
"type": "module",
"keywords": [
"svelte"
],
"scripts": {
"watch:css": "run-p watch:css:*",
"watch:css:global": "postcss src/lib/assets/global.scss -o static/global.css -w",
"watch:css:styles": "postcss src/lib/assets/styles.scss -o static/styles.css -w",
"watch:dev": "svelte-kit dev --host 0.0.0.0",
"clean": "run-p clean:*",
"clean:build": "rm -fr ./build",
"clean:css": "rm -f static/global.css && rm -f static/styles.css",
"clean:dev": "rm -fr ./.svelte-kit",
"dev": "npm run clean && run-p watch:*",
"build": "run-s build:css build:svelte",
"build:css": "run-p build:css:*",
"build:css:global": "NODE_ENV=production postcss src/lib/assets/global.scss -o static/global.css",
"build:css:styles": "NODE_ENV=production postcss src/lib/assets/styles.scss -o static/styles.css",
"build:svelte": "svelte-kit build --verbose",
"deploy": "run-s clean build:css build:svelte",
"start": "svelte-kit preview",
"validate": "svelte-check",
"prepare": "husky install"
},
"dependencies": {
"@sendgrid/mail": "^7.5.0",
"@slack/webhook": "^6.0.0",
"emoji-regex": "^10.0.0",
"google-spreadsheet": "^3.1.15",
"js-cookie": "^3.0.1"
},
"devDependencies": {
"@jsdevtools/rehype-toc": "^3.0.2",
"@netlify/functions": "^0.8.0",
"@sveltejs/adapter-netlify": "^1.0.0-next.35",
"@sveltejs/kit": "1.0.0-next.202",
"@tsconfig/svelte": "^2.0.1",
"@types/js-cookie": "^3.0.1",
"autoprefixer": "^10.4.0",
"cssnano": "^5.0.8",
"encoding": "^0.1.13",
"github-buttons": "^2.19.1",
"hast-util-heading-rank": "^2.1.0",
"hastscript": "^7.0.2",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"mdast-util-to-string": "^3.1.0",
"mdsvex": "^0.9.8",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.4",
"postcss-cli": "^9.0.1",
"postcss-import": "^14.0.2",
"postcss-load-config": "^3.1.0",
"postcss-preset-env": "^7.0.1",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"remark-autolink-headings": "^6.0.1",
"remark-external-links": "^8.0.0",
"remark-slug": "^6.0.0",
"sass": "^1.43.4",
"svelte": "^3.44.0",
"svelte-check": "^2.2.7",
"svelte-preprocess": "^4.9.8",
"tailwindcss": "^3.0.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"unist-util-visit": "^4.1.0",
"vite": "^2.6.13"
},
"lint-staged": {
"*.{cjs,js,ts,css,scss,md,svelte}": "prettier --write"
},
"engines": {
"npm": ">=6.0.0 <7"
}
}