-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.41 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.41 KB
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
{
"name": "jflower-cake",
"version": "1.0.0",
"description": "J Flower Cake – Korean Bean Paste and Buttercream Flower Cakes from Gouda, the Netherlands",
"main": "./src/build.js",
"scripts": {
"start": "npm run build:rollup && npm run dev:tailwind && npm run dev:server",
"build": "node ./src/cleanPublic.js && npm run build:rollup && npm run build:html && npm run build:css",
"build:rollup": "rollup -c",
"build:html": "node ./src/build.js",
"build:css": "NODE_ENV=production postcss src/style.css -o public/style.css",
"dev:tailwind": "postcss -w src/style.css -o public/style.css",
"dev:rollup": "rollup -c -w --no-watch.clearScreen",
"dev:server": "nodemon",
"eslint": "eslint --ext .js .",
"eslint:fix": "eslint --fix --ext .js .",
"prettier:svelte": "prettier --write --plugin-search-dir=. ./**/*.svelte"
},
"type": "commonjs",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@elderjs/elderjs": "^1.3.4",
"@elderjs/plugin-browser-reload": "^0.1.6",
"@elderjs/plugin-markdown": "^0.1.6",
"autoprefixer": "^10.2.5",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"intersection-observer": "^0.11.0",
"polka": "^0.5.2",
"postcss": "^8.2.9",
"postcss-cli": "^8.3.1",
"sirv": "^1.0.11",
"svelte": "3.29.0",
"svelte-preprocess": "^4.7.0",
"tailwindcss": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/runtime": "^7.13.10",
"eslint": "^7.23.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"prettier-plugin-svelte": "^1.2.1",
"rollup": "^2.44.0"
},
"author": "Marcel Oomens",
"license": "GPLv3",
"files": [
"index.js",
"elderjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marceloomens/kongpao.git"
},
"keywords": [
"svelte",
"elderjs",
"ssr",
"static",
"site",
"generator",
"seo",
"ssg",
"template",
"partial",
"hydration"
],
"bugs": {
"url": "https://github.com/marceloomens/kongpao/issues"
},
"homepage": "https://www.jflower.nl"
}