-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.25 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "team-manager-back",
"version": "1.0.0",
"description": "Backend for team manager website",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js | bunyan",
"dev": "nodemon | bunyan",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"generateDocs": "apidoc -i src/ -o docs/",
"test:build": "yarn build && yarn lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamwaterloop/team-manager-back.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/teamwaterloop/team-manager-back/issues"
},
"standard": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
},
"apidoc": {
"title": "Waterloop Team Manager API",
"url": "https://team-manager.teamwaterloop.ca/api"
},
"homepage": "https://github.com/teamwaterloop/team-manager-back#readme",
"dependencies": {
"@types/axios": "^0.14.0",
"assert": "^1.4.1",
"axios": "^0.17.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"class-validator": "^0.7.3",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"mysql": "^2.15.0",
"node-fetch": "^1.7.3",
"passport": "^0.4.0",
"passport-jwt": "^3.0.0",
"passport-local": "^1.0.0",
"qs": "^6.5.1",
"reflect-metadata": "^0.1.10",
"routing-controllers": "^0.7.6",
"typeorm": "^0.1.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.1",
"@types/body-parser": "^1.16.5",
"@types/boom": "^4.3.7",
"@types/bunyan": "^1.8.3",
"@types/cookie-parser": "^1.4.1",
"@types/dotenv": "^4.0.1",
"@types/express": "^4.0.37",
"@types/jsonwebtoken": "^7.2.3",
"@types/lodash": "^4.14.80",
"@types/mongodb": "^2.2.15",
"@types/node-fetch": "^1.6.7",
"@types/node-persist": "^0.0.32",
"@types/passport": "^0.3.4",
"@types/passport-jwt": "^2.0.24",
"@types/passport-local": "^1.0.31",
"@types/qs": "^6.5.0",
"apidoc": "^0.17.6",
"nodemon": "^1.12.1",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.5.3"
}
}