-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.08 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.08 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "elderjs-serverless",
"version": "1.0.0",
"description": "An attempt to render Elderjs in a serverless function",
"main": "./src/build.js",
"scripts": {
"dev": "npx serve public",
"build": "node ./src/cleanPublic.js && npm run build:rollup && npm run build:html && node ./src/afterBuild.js",
"build:rollup": "rollup --config",
"build:html": "node ./src/build.js",
"postbuild": "mkdirp functions/account/public/dist; ncp elder.config.prod.js functions/lib/elder.config.js; ncp src functions/account/src; ncp ___ELDER___ functions/account/___ELDER___; ncp public/dist functions/account/public/dist",
"dev:rollup": "rollup --config --watch --no-watch.clearScreen",
"dev:server": "nodemon",
"eslint": "eslint --ext .js .",
"eslint:fix": "eslint --fix --ext .js ."
},
"type": "commonjs",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@elderjs/elderjs": "decrek/elderjs#pass-elder-config-to-constructor",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie": "^0.4.1",
"cors": "^2.8.5",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"gray-matter": "^4.0.2",
"intersection-observer": "^0.11.0",
"jsonwebtoken": "^8.5.1",
"markdown-js": "^0.0.4",
"ncp": "^2.0.0",
"netlify-lambda": "^2.0.1",
"node-fetch": "^2.3.0",
"polka": "^0.5.2",
"remark": "^12.0.1",
"remark-html": "^12.0.0",
"serverless-http": "^2.5.0",
"sirv": "^1.0.5",
"svelte": "^3.24.0",
"svelte-preprocess": "^4.0.9",
"systemjs": "^6.4.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/runtime": "^7.10.5",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"autoprefixer": "^9.8.6",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"rollup": "^2.21.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-external-globals": "^0.6.0",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-terser": "^6.1.0"
},
"author": "Declan Rek",
"license": "MIT",
"files": [
"index.js",
"elderjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/decrek/elderjs-serverless.git"
},
"keywords": [
"svelte",
"elderjs",
"ssr",
"static",
"site",
"generator",
"seo",
"ssg",
"template",
"partial",
"hydration"
],
"bugs": {
"url": "https://github.com/decrek/elderjs-serverless/issues"
},
"homepage": "https://github.com/decrek/elderjs-serverless#readme"
}