-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 837 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
37
{
"name": "Api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/**/*.test.js",
"start": "fastify start -l info app.js",
"dev": "fastify start -l info -P app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.2",
"dotenv-safe": "^6.1.0",
"fastify": "^1.11.0",
"fastify-autoload": "^0.5.0",
"fastify-cli": "^0.26.2",
"fastify-formbody": "^2.0.3",
"fastify-jwt": "^0.8.0",
"fastify-plugin": "^1.2.0",
"fastify-swagger": "^0.16.2",
"jsonwebtoken": "^8.4.0",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.41.2",
"sequelize-cli": "^5.4.0",
"swagger-ui": "^3.20.3"
},
"devDependencies": {
"tap": "^12.0.0"
}
}