-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.12 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
{
"name": "techgames-api-challenge",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"test": "docker-compose -f docker-compose.test.yaml up --abort-on-container-exit",
"test:local": "nyc mocha -r ts-node/register \"./test/**/*.test.ts\"",
"start": "docker-compose up",
"start:local": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"start:prod": "NODE_ENV=production node dist/server.js",
"build": "tsc -p tsconfig.json",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Compete-McGill/techgames-api-challenge"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Compete-McGill/techgames-api-challenge/issues"
},
"homepage": "https://github.com/Compete-McGill/techgames-api-challenge#readme",
"devDependencies": {},
"dependencies": {
"axios": "^0.18.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.7",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"@babel/preset-typescript": "^7.3.3",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.1.7",
"@types/jsonwebtoken": "^8.3.5",
"@types/mocha": "^5.2.6",
"@types/bcryptjs": "^2.4.2",
"@types/chai-as-promised": "^7.1.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.16.1",
"@types/mongodb": "^3.1.26",
"@types/mongoose": "^5.5.0",
"@types/node": "^11.13.10",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"codecov": "^3.5.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0"
}
}