-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "theam_test",
"version": "1.0.0",
"description": "CRM Service api",
"main": "server.ts",
"scripts": {
"start": "ts-node ./src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Covicake/theam_test.git"
},
"author": "Fernando Andrés García Hernández",
"license": "ISC",
"bugs": {
"url": "https://github.com/Covicake/theam_test/issues"
},
"homepage": "https://github.com/Covicake/theam_test#readme",
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-fileupload": "^0.4.0",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.3.0",
"mysql2": "^1.5.3",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"typeorm": "^0.2.7",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bcrypt": "^2.0.0",
"@types/express": "^4.16.0",
"@types/express-fileupload": "^0.1.1",
"@types/express-jwt": "0.0.40",
"@types/jest": "^23.1.3",
"@types/jsonwebtoken": "^7.2.7",
"@types/node": "^10.5.1",
"@types/passport": "^0.4.5",
"@types/passport-http-bearer": "^1.0.33",
"@types/uuid": "^3.4.3",
"jest": "^23.2.0",
"ts-jest": "^22.4.6",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^2.9.2"
}
}