generated from salesforce/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
39
40
41
{
"name": "applink-getting-started-nodejs",
"version": "1.0.0",
"description": "Heroku AppLink Sample App with Fastify",
"type": "module",
"main": "src/app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap \"test/**/*.test.js\"",
"start": "fastify start -o -a 0.0.0.0 -p $APP_PORT -l info src/app.js",
"dev": "fastify start -o -w -l debug -d -P src/app.js",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\" \"*.js\" \"*.json\" \"*.md\"",
"format:check": "prettier --check \"src/**/*.js\" \"test/**/*.js\" \"*.js\" \"*.json\" \"*.md\""
},
"keywords": [],
"author": "Heroku DevRel <heroku-dev-advocacy@salesforce.com>",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0 <24.0.0"
},
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.3",
"@heroku/applink": "^1.0.0-ea.2",
"fastify": "^5.4.0",
"fastify-cli": "^7.4.0",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"tap": "^21.1.0"
}
}