-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 852 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
{
"name": "integration-addon-test-api-app",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap \"test/**/*.test.js\"",
"start": "fastify start -a 0.0.0.0 -l info app.js",
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 fastify start -w -l info -d -P app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"fastify": "^4.0.0",
"fastify-plugin": "^4.0.0",
"@fastify/autoload": "^5.0.0",
"@fastify/sensible": "^5.0.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@heroku/sf-fx-runtime-nodejs": "^0.14.4",
"fastify-cli": "^5.9.0",
"got": "^12.6.0",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"tap": "^16.1.0"
}
}