This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.73 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
{
"name": "gamehub-backend-express",
"version": "1.0.0",
"description": "The backend for the GameHub app. This app is about meeting other people and playing (board)games together. You can make or participate in parties and enjoy evenings with friends and foes.",
"main": "index.ts",
"scripts": {
"start": "NODE_ENV=production ts-node-dev --transpileOnly src/index.ts",
"test": "NODE_ENV=test jest -i",
"test:watch": "NODE_ENV=test jest --watch -i",
"test:coverage": "NODE_ENV=test jest --coverage --silent -i",
"dev": "NODE_ENV=local ts-node-dev --transpileOnly src/index.ts",
"build": "rimraf dist; tsc",
"docker-run-dev": "docker-compose up; NODE_ENV=local ts-node-dev --transpileOnly src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoutPessemier/GameHub-Backend-Express.git"
},
"keywords": [
"nodejs",
"express",
"mongodb"
],
"author": "Mout Pessemier",
"license": "ISC",
"bugs": {
"url": "https://github.com/MoutPessemier/GameHub-Backend-Express/issues"
},
"homepage": "https://github.com/MoutPessemier/GameHub-Backend-Express#readme",
"dependencies": {
"@sentry/browser": "^5.10.2",
"@sentry/node": "^5.7.0",
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/lodash": "^4.14.144",
"@types/mongoose": "^5.5.20",
"bcrypt": "^3.0.6",
"bcryptjs": "^2.4.3",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"lodash": "^4.17.15",
"mongoose": "^5.7.7",
"sentry": "^0.1.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"ts-node-dev": "^1.0.0-pre.43",
"tslint": "^5.20.1",
"typescript": "^3.6.4"
}
}