-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "whizzes-server",
"version": "0.1.0",
"description": "Back-End development for whizzes a social network application",
"main": "src/index.ts",
"repository": "git@github.com:EstebanBorai/whizzes-server.git",
"author": "Esteban Borai <estebanborai@gmail.com>",
"license": "MIT",
"maintainers": [
{
"name": "David Arenas",
"email": "davejs136@gmail.com",
"url": "https://github.com/Davejs136"
},
{
"name": "Esteban Borai",
"email": "estebanborai@gmail.com",
"url": "https://github.com/EstebanBorai"
}
],
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"fmt": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"bcrypt": "^5.0.0",
"fastify": "^3.7.0",
"fastify-plugin": "^3.0.0",
"pg": "^8.4.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.28",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/node": "^14.11.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.5"
}
}