-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 923 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
{
"name": "kuizz-api-v2",
"version": "1.0.0",
"description": "The API of Kuizz",
"main": "index.js",
"author": "Matthieu",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc -p . || true",
"dc:up": "yarn build && docker-compose build && docker-compose up",
"dc:build": "yarn build && docker-compose build"
},
"dependencies": {
"fastify": "^2.13.0",
"fastify-cookie": "^3.6.0",
"fastify-cors": "^3.0.3",
"fastify-session": "^3.3.0",
"form-data": "^3.0.0",
"ioredis": "^4.16.1",
"jsonwebtoken": "^8.5.1",
"msgpack": "^1.0.3",
"node-fetch": "^2.6.0",
"rethinkdb": "^2.4.2"
},
"devDependencies": {
"@types/ioredis": "^4.14.9",
"@types/jsonwebtoken": "^8.3.9",
"@types/msgpack": "^0.0.30",
"@types/msgpack5": "^3.4.1",
"@types/node": "^13.11.0",
"@types/node-fetch": "^2.5.5",
"@types/rethinkdb": "^2.3.14"
}
}