-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.88 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
{
"name": "programmingtil-svelte",
"description": "Svelte/SvelteKit frontend for programmingtil-rails (headless CMS / API)",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"export": "svelte-kit build",
"exportprod": "NODE_ENV=production npm run tw:build && svelte-kit build",
"start": "svelte-kit start",
"tw:build": "npm run tw:core & npm run tw:b",
"tw:core": "NODE_ENV=production postcss static/tailwind.css -o static/index-core.css --config postcss/core",
"tw:b": "NODE_ENV=production postcss static/tailwind.css -o static/index-blue.css --config postcss/blue",
"tw:w:b": "postcss static/tailwind.css -o static/index-blue.css --config postcss/blue -w",
"tw:w:core": "postcss static/tailwind.css -o static/index-core.css --config postcss/core -w"
},
"dependencies": {
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/line-clamp": "^0.2.0",
"dompurify": "^2.2.7",
"crypto-js": "^4.0.0",
"isomorphic-dompurify": "^0.12.0",
"node-fetch": "^2.6.1",
"snarkdown": "^2.0.0"
},
"devDependencies": {
"@sveltejs/adapter-vercel": "^1.0.0-next.18",
"@sveltejs/kit": "^1.0.0-next.108",
"@tailwindcss/jit": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"autoprefixer": "^10.2.5",
"cookie": "^0.4.1",
"cssnano": "^4.1.10",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-svelte3": "^3.1.2",
"postcss": "^8.2.15",
"postcss-load-config": "^3.0.1",
"prettier": "^2.3.0",
"prettier-plugin-svelte": "^2.3.0",
"svelte": "^3.38.2",
"svelte-preprocess": "^4.7.3",
"tailwindcss": "^2.0.3",
"tslib": "^2.0.0",
"typescript": "^4.0.0",
"vite": "^2.3.3"
},
"type": "module"
}