-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "fastify-bookmarkly",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"directories": {
"test": "__test__"
},
"scripts": {
"test": "env NODE_ENV=test tap __test__/**/*.test.js",
"start": "fastify start -l info ./src/app.js",
"dev": "fastify start -w -l info -P ./src/app.js",
"db": "babel-node ./db/index.js",
"clean": "rimraf dist",
"build": "npm run clean && babel src -d dist"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/mongodb": "^7.0.0",
"@fastify/swagger": "^8.9.0",
"@paralleldrive/cuid2": "^2.2.2",
"babel-plugin-inline-dotenv": "^1.7.0",
"config": "^3.3.9",
"fastify": "^4.22.2",
"fastify-cli": "^5.8.0",
"fastify-plugin": "^4.5.1",
"mongodb": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/node": "^7.22.10",
"@babel/preset-env": "^7.22.14",
"dotenv": "^16.3.1",
"mongo-clean": "^2.0.0",
"rimraf": "^5.0.1",
"tap": "^16.3.8"
}
}