forked from cyclic-software/express-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 780 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
{
"name": "express-hello-world",
"version": "1.0.0",
"description": "Expressjs Hello World example to provide faster start deploying on Cyclic platform",
"main": "server.js",
"scripts": {
"serve": "nodemon --watch . server.js",
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclic-software/express-hello-world.git"
},
"author": "Cyclic Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclic-software/express-hello-world/issues"
},
"homepage": "https://github.com/cyclic-software/express-hello-world#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}