forked from KlasenK/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.04 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"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.css -o static/global.css -w",
"watch:css:styles": "postcss src/lib/assets/styles.scss -o static/styles.css -w",
"watch:dev": "env-cmd --silent vite 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",
"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.css -o static/global.css",
"build:css:styles": "NODE_ENV=production postcss src/lib/assets/styles.scss -o static/styles.css",
"build:svelte": "USE_CACHE=true vite build",
"deploy": "run-s clean build:css build:svelte",
"start": "vite preview",
"validate": "svelte-check",
"prepare": "svelte-kit sync && husky install",
"generate:blog-post": "plop --plopfile ./generators/index.cjs blog-post",
"generate:adr": "adr new",
"generate:changelog": "node ./scripts/generate-changelog.js",
"generate:jb": "node ./generators/ide/jb-gen.js && npm run check-links $(gp url 3000)/docs/references/ides-and-editors",
"check-links": "linkinator --concurrency 1000 --recurse --verbosity=error --skip 'https://(www.)?(notion.so|gitpod.io|github.com|linux.org|twitter.com|www.gitpodstatus.com|researchgate.net|news.ycombinator.com|discord.com|localhost|linkedin|android.com)' --skip '(png|jpg|svg|woff|js|css)$'",
"cypress:open": "cypress open --browser firefox",
"test:e2e": "cypress run --headless --browser firefox"
},
"dependencies": {
"@lottiefiles/lottie-player": "^1.6.3",
"@sendgrid/mail": "^7.5.0",
"@types/rss": "^0.0.30",
"@types/uuid": "^8.3.4",
"cookie": "^0.5.0",
"emoji-regex": "^10.0.0",
"google-spreadsheet": "^3.1.15",
"js-cookie": "^3.0.1",
"nanoid": "^4.0.0",
"node-fetch": "^3.2.10",
"rehype-img-size": "^1.0.1",
"rss": "^1.2.2",
"validator": "^13.7.0"
},
"devDependencies": {
"@netlify/functions": "^1.0.0",
"@octokit/plugin-paginate-graphql": "^2.0.1",
"@sveltejs/adapter-netlify": "1.0.0-next.69",
"@sveltejs/kit": "1.0.0-next.373",
"@tailwindcss/typography": "^0.5.0",
"@testing-library/cypress": "^8.0.7",
"@tsconfig/svelte": "^2.0.1",
"@types/cookie": "^0.5.1",
"@types/js-cookie": "^3.0.1",
"@types/node-fetch": "^2.6.2",
"@types/validator": "^13.7.10",
"autoprefixer": "^10.4.0",
"cssnano": "^5.0.8",
"cypress": "^11.2.0",
"encoding": "^0.1.13",
"env-cmd": "^10.1.0",
"hast-util-heading-rank": "^2.1.0",
"hastscript": "^7.0.2",
"husky": "^7.0.4",
"linkinator": "^4.1.1",
"lint-staged": "^11.2.6",
"mdast-util-to-string": "^3.1.0",
"mdsvex": "^0.9.8",
"npm-run-all": "^4.1.5",
"octokit": "^1.7.1",
"plop": "^3.0.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",
"prismjs": "^1.28.0",
"rehype-wrap-all": "^1.1.0",
"remark-autolink-headings": "^6.0.1",
"remark-external-links": "^8.0.0",
"remark-slug": "^6.0.0",
"sass": "^1.43.4",
"svelte": "^3.46.2",
"svelte-check": "^2.9.2",
"svelte-focus-trap": "^1.2.0",
"svelte-lite-youtube-embed": "^1.1.0",
"svelte-popperjs": "^1.2.8",
"svelte-preprocess": "^4.9.8",
"tailwindcss": "^3.0.0",
"tslib": "^2.3.1",
"typescript": "^4.7.4",
"unist-util-visit": "^4.1.0",
"vite": "^3.2.5"
},
"overrides": {
"@sveltejs/kit": {
"@sveltejs/vite-plugin-svelte": "1.1.1"
}
},
"lint-staged": {
"*.{cjs,js,ts,css,scss,md,svelte}": "prettier --write"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.9.0"
}
}