-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"coverage": "npm run unit -- --cov --coverage-report=text --coverage-report=html",
"unit": "tap test/*.test.js",
"test": "npm run lint && npm run build-frontend && npm run unit",
"build-frontend": "cd frontend && npm install && npm run build",
"start": "env-cmd local.env fastify start index.js"
},
"author": "Tommaso Allevi <[email protected]>",
"license": "MIT",
"dependencies": {
"env-cmd": "^7.0.0",
"fastify": "^1.13.3",
"fastify-cli": "^0.27.0",
"fastify-env": "^0.6.1",
"fastify-jwt": "^0.8.0",
"fastify-mongodb": "^0.5.0",
"fastify-plugin": "^0.2.2",
"fastify-redis": "^0.4.0",
"fastify-static": "^0.8.0",
"fastify-swagger": "^0.3.2"
},
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"mongodb": "^3.1.0",
"nock": "^9.1.6",
"snazzy": "^7.1.1",
"standard": "^10.0.3",
"tap": "^11.1.5"
}
}