-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
52
53
54
{
"name": "fastify-rest-api",
"version": "1.0.0",
"description": "Boilerplate project for a REST API with Fastify Framework ",
"main": "app.js",
"scripts": {
"test": "jest --forceExit --detectOpenHandles ",
"coverage": "jest --forceExit --detectOpenHandles --collectCoverage",
"newman": "node config/newman.js",
"start": "node index.js",
"lint": "eslint .",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/vinistevam/fastify-rest-api.git"
},
"keywords": [
"fastify",
"node",
"jest",
"javascript"
],
"author": "",
"license": "",
"bugs": {
"url": "/~https://github.com/vinistevam/fastify-rest-api/issues"
},
"homepage": "/~https://github.com/vinistevam/fastify-rest-api#readme",
"dependencies": {
"app-root-path": "^2.2.1",
"dotenv": "^8.0.0",
"fastify": "^2.7.1",
"fastify-autoload": "^1.0.0",
"http-status": "^1.3.2",
"newman": "^4.5.3",
"sequelize": "^5.15.1",
"sqlite3": "^4.0.9",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-jest": "^22.15.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"handlebars": ">=4.3.0",
"csv-parse": ">=4.4.6"
}
}