forked from ServerlessDays/serverlessdays-virtual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 903 Bytes
/
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
{
"name": "serverlessdays-virtual",
"version": "1.0.0",
"description": "ServerlessDays Virtual Website",
"main": "index.js",
"scripts": {
"dev": "eleventy --serve",
"build": "eleventy",
"debug": "DEBUG=Eleventy* eleventy",
"bundle": "node ./src/build/createSecrets.js && rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"serverless",
"virtual",
"website"
],
"engines": {
"node": ">=12.0"
},
"author": "A. Stanley",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"clean-css": "^4.2.3",
"jsdom": "^16.3.0",
"markdown-it": "^11.0.0",
"node-fetch": "^3.0.0-beta.5",
"purgecss": "^2.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"rollup": "^2.22.1"
}
}