-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 KB
/
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
38
{
"name": "fasthr",
"version": "1.2.0",
"description": "A fast and tiny CLI tool to easily spin up a hot reload http server on the current directory",
"bin": {
"fasthr": "bin/fasthr"
},
"repository": "https://github.com/jeanlescure/fasthr",
"author": "Jean M. Lescure",
"license": "Apache-2.0",
"scripts": {
"dev": "concurrently \"rollup -cw\" \"sleep 10 && nodemon\"",
"build": "NODE_ENV=production rollup -c",
"start": "yarn build && ./bin/fasthr",
"release": "standard-version"
},
"dependencies": {
"fastify": "^3.9.1",
"fastify-static": "^3.3.0",
"livereload": "^0.9.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-run": "^2.0.2",
"@types/node": "^14.14.10",
"concurrently": "^5.3.0",
"nodemon": "^2.0.6",
"rollup": "^2.27.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"standard-version": "^9.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}