-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 892 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": "ts-fastify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"test": "npx jest --verbose --runInBand",
"dev": "ts-node --files ./src/index.ts",
"build": "rm -rf dist && tsc --sourceMap -p ./"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/jest": "^24.0.23",
"@types/mongodb": "^3.3.11",
"@types/mongoose": "^5.5.32",
"@types/node": "^12.12.14",
"config": "^3.0.1",
"fastify": "^2.15.1",
"fastify-autoload": "^1.0.0",
"fastify-blipp": "^2.1.0",
"fastify-plugin": "^1.6.0",
"fastify-swagger": "^2.4.0",
"jest": "^24.9.0",
"mongoose": "^5.7.13",
"nconf": "^0.10.0",
"source-map-support": "^0.5.16",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.2",
"uuid": "^3.3.3"
}
}