-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 841 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 841 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
28
29
30
31
32
33
34
{
"name": "pgpdemo",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap \"test/**/*.test.js\"",
"ori_start": "fastify start -l info app.ts",
"ori_dev": "fastify start -w -l info -P app.ts",
"build": "tsc -p tsconfig.json",
"start": "node dest/index.js",
"dev": "npm run build && npm run start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/sensible": "^5.0.0",
"fastify": "^4.0.0",
"fastify-cli": "^5.8.0",
"fastify-plugin": "^4.0.0",
"openpgp": "^6.0.1"
},
"devDependencies": {
"@types/node": "^20.8.6",
"tap": "^16.1.0",
"typescript": "^5.2.2"
}
}