-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 729 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 729 Bytes
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
{
"name": "static-html-template",
"type": "module",
"version": "1.0.0",
"description": "A GitHub template for HTML pages with live server and Rollup",
"main": "src/main.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"author": "ckroeger",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^2.56.3",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1"
},
"dependencies": {
"dayjs": "^1.11.12"
}
}