-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathpackage.json
93 lines (93 loc) · 3.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
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
{
"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/assets/global.scss -o static/global.css -w",
"watch:css:styles": "postcss src/assets/styles.scss -o static/styles.css -w",
"watch:dev": "svelte-kit dev",
"clean": "run-p clean:*",
"clean:css": "rm -f static/global.css && rm -f static/styles.css",
"clean:dev": "rm -fr ./.svelte",
"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/assets/global.scss -o static/global.css",
"build:css:styles": "NODE_ENV=production postcss src/assets/styles.scss -o static/styles.css",
"build:svelte": "svelte-kit build",
"build:functions": "netlify-lambda build src/functions",
"deploy": "run-s clean build:functions build:css build:svelte",
"postdeploy": "rm -fr ./build/_redirects",
"start": "svelte-kit start",
"validate": "svelte-check"
},
"dependencies": {
"@sendgrid/mail": "^7.4.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.0.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.4.0",
"@rollup/plugin-typescript": "^6.0.0",
"@rollup/plugin-url": "^5.0.0",
"@sveltejs/adapter-netlify": "^1.0.0-next.4",
"@sveltejs/kit": "^1.0.0-next.76",
"@tsconfig/svelte": "^1.0.10",
"@types/aws-lambda": "^8.10.73",
"@types/compression": "^1.7.0",
"@types/node": "^14.11.1",
"@types/polka": "^0.5.1",
"cssnano": "^4.1.10",
"github-buttons": "^2.15.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"mdsvex": "^0.8.9",
"netlify-lambda": "^2.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.8",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.0",
"postcss-load-config": "^3.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"remark-autolink-headings": "^6.0.1",
"remark-slug": "^6.0.0",
"rollup": "^2.3.4",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.32.8",
"svelte": "^3.37.0",
"svelte-check": "^1.0.46",
"svelte-preprocess": "^4.6.9",
"tailwindcss": "^2.0.4",
"tslib": "^2.0.1",
"typescript": "^4.0.3",
"unist-util-visit": "^2.0.3",
"vite": "^2.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{cjs,js,ts,css,scss,md,svelte}": "prettier --write"
}
}