-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "fastify-example-todo",
"version": "0.0.1",
"description": "A todo-app (API only) example in Fastify",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "npm run lint",
"test": "tap --cov test/**/*.test.js",
"start": "fastify start -l info app.js",
"dev": "fastify start -l info -P app.js",
"lint": "standard --fix | snazzy",
"mongo": "docker run -p 27017:27017 -e MONGO_INITDB_DATABASE=todo-test -e MONGO_INITDB_ROOT_USERNAME=dummy -e MONGO_INITDB_ROOT_PASSWORD=dummy --rm mongo:4"
},
"keywords": [],
"author": "Cemre Mengu <cemremengu@gmail.com>",
"license": "MIT",
"dependencies": {
"fastify": "^2.0.0",
"fastify-autoload": "^0.6.0",
"fastify-cli": "^0.27.0",
"fastify-cors": "^3.0.3",
"fastify-helmet": "^3.0.0",
"fastify-jwt": "^0.8.0",
"fastify-mongodb": "^1.0.0",
"fastify-plugin": "^1.4.0"
},
"devDependencies": {
"mongo-clean": "^2.0.0",
"mongodb": "^3.1.10",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"tap": "^12.1.1"
}
}