-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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-typescript-docker-rest-api",
"version": "1.0.0",
"description": "Starter project for a fast, simple and clean RESTful API",
"main": "index.js",
"scripts": {
"cleanup": "rm -rf dist && rm -rf node_modules",
"test": "jest",
"start": "tsc && node dist/index",
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec node --inspect=0.0.0.0:9229 -r ts-node/register ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miqrc/fastify-typescript-docker-rest-api.git"
},
"keywords": [
"fastify",
"typescript",
"docker",
"nodejs",
"boilerplate",
"rest",
"api"
],
"author": "Miquel Ruiz <miqrch@gmail.com>",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"fastify": "^2.15.1",
"jwt-simple": "^0.5.6",
"moment": "^2.29.4",
"morgan": "^1.9.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/jest": "^24.0.12",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.0",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.16",
"jest": "^24.8.0",
"nodemon": "^2.0.20",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}