forked from cloudflare/modules-rollup-esm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 822 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
{
"private": true,
"name": "{{ project-name }}",
"version": "1.0.0",
"description": "A template for kick starting a Cloudflare Workers project",
"module": "./dist/index.mjs",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,md}'",
"start": "miniflare -w -d -p 8787 --build-command \"npm install && npm run build\" --build-watch-path \"src\""
},
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"miniflare": "^1.4.1",
"prettier": "^1.19.1",
"rollup": "^2.36.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"workers-logger": "^0.1.0"
}
}