forked from fastify/fastify-example-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 838 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
33
34
35
36
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"unit": "mocha test/*.test.js",
"test": "npm run lint && npm run unit",
"microservice": "fastify",
"start": "fastify index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"boom": "^5.2.0",
"fastify": "^0.35.0",
"fastify-env": "^0.2.0",
"fastify-jwt": "^0.1.1",
"fastify-mongodb": "^0.2.0",
"fastify-plugin": "^0.1.1",
"fastify-redis": "^0.1.1",
"fastify-static": "^0.4.1",
"fastify-swagger": "^0.1.1",
"fastseries": "^1.7.2",
"got": "^7.1.0"
},
"devDependencies": {
"mocha": "^3.5.3",
"mongodb": "^2.2.31",
"nock": "^9.0.14",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3"
}
}