-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "fastify-app",
"version": "2.0.2",
"description": "A simple fastify app template for JSON API server with helpful routes and initial settings.",
"main": "src/index.mjs",
"module": "src/index.mjs",
"files": [
"dist",
"src"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./src/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "babel src --out-dir dist --extensions \".mjs\" --out-file-extension \".cjs\""
},
"homepage": "https://github.com/zhiyi7/fastify-app",
"repository": {
"type": "git",
"url": "git+https://github.com/zhiyi7/fastify-app.git"
},
"keywords": [
"fastify",
"api",
"server",
"template",
"web server",
"http server"
],
"author": "Zhiyi",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^11.0.0",
"fast-glob": "^3.3.3",
"fastify": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0"
}
}