-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "tinder-like-api",
"version": "1.0.0",
"description": "TypeScript, Node.js, Express and Sequelize tinder-like API REST",
"main": "lib/app.js",
"scripts": {
"start": "node_modules/.bin/nodemon",
"serve": "npm run build & node --inspect=5858 -r ts-node/register src/app.ts",
"build": "tsc",
"test": "jest",
"restartdb": "npm run build && sequelize db:drop && sequelize db:create && sequelize db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeandroDoldan/tinder-like-api.git"
},
"author": "Leandro Doldan",
"license": "ISC",
"bugs": {
"url": "https://github.com/LeandroDoldan/tinder-like-api/issues"
},
"homepage": "https://github.com/LeandroDoldan/tinder-like-api#readme",
"dependencies": {
"@types/express": "^4.17.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.21.0",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.12.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.19.0",
"sequelize-typescript": "^1.0.0",
"typedi": "^0.8.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.27",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/helmet": "0.0.44",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^8.3.4",
"@types/node": "^12.7.5",
"@types/passport": "^1.0.1",
"@types/passport-jwt": "^3.0.2",
"@types/passport-local": "^1.0.33",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.3",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"prettier-tslint": "^0.4.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.3",
"typescript-eslint": "0.0.1-alpha.0"
}
}