-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.28 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
47
48
49
50
51
{
"name": "fastify-basic-api",
"version": "0.0.1",
"description": "Sample Fastify api server",
"main": "index.js",
"author": "roxxydev",
"license": "MIT",
"scripts": {
"start": "node index.js",
"lint": "npm run lint:standard",
"lint:standard": "eslint",
"unit:tap": "tap -J --coverage-report=html --no-browser test/*.js",
"unit:lab": "lab -c -L -m 0 -a @hapi/code --coverage-exclude index.js",
"test": "npm run lint && npm run unit:lab",
"test:tap": "npm run lint && TEST_USE_TAP=true && npm run unit:tap"
},
"dependencies": {
"bcrypt": "5.0.x",
"dotenv": "8.2.x",
"eslint": "7.11.x",
"fastify": "3.5.x",
"fastify-jwt": "2.1.x",
"fastify-plugin": "2.3.x",
"fastify-sensible": "3.0.x",
"fastify-swagger": "3.4.x",
"fluent-schema": "1.0.x",
"knex": "0.21.x",
"lodash": "4.17.x",
"mongoose": "5.10.x",
"pg": "8.3.x",
"pino-pretty": "4.2.x"
},
"devDependencies": {
"@hapi/code": "8.0.x",
"@hapi/lab": "24.0.x",
"axios": "0.20.x",
"knex-cleaner": "1.3.x",
"request": "2.88.x",
"tap": "14.10.x"
},
"eslintConfig": {
"extends": "plugin:@hapi/recommended",
"env": {
"node": true,
"es2020": true
},
"parserOptions": {
"ecmaVersion": 2020
}
}
}