-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 949 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
{
"name": "hello-welt",
"version": "0.5.0",
"author": "Julie Ng",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/julie-ng/hello-welt"
},
"description": "Simple containerized Node.js app for demos",
"main": "app/server.js",
"scripts": {
"start": "node app/server.js",
"dev": "NODE_ENV=development nodemon -w app | pino-pretty",
"app-version": "node -e \"console.log(require('./package.json').version)\"",
"lint": "eslint .",
"test": "tap test --allow-incomplete-coverage",
"test:watch": "tap test --watch",
"preflight": "npm audit --production && npm run lint && npm run test"
},
"dependencies": {
"fastify": "^4.15.0",
"@fastify/helmet": "^11.1.0",
"handlebars": "^4.7.7",
"pino": "^8.11.0",
"@fastify/view": "^9.1.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"nodemon": "^3.0.3",
"tap": "^21.0.0"
}
}