-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.53 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
71
72
73
74
75
76
77
78
79
{
"name": "fitness-app-backend",
"version": "0.0.1",
"description": "fitness app backend",
"main": "dist/index.js",
"scripts": {
"devstart": "tsc-watch --onSuccess \"node ./dist/src/app.js\"",
"build": "tsc",
"cleardb": "node cleardb.js",
"start": "node ./dist/src/app.js",
"test": "mocha -r ts-node/register --exit \"./test/**/*.test.ts\" --timeout 0",
"coverage": "nyc mocha -r ts-node/register --exit \"./test/**/*.test.ts\" --timeout 0",
"codecov-coverage": "nyc --reporter=text-lcov mocha -r ts-node/register --exit \"./test/**/*.test.ts\" --timeout 0 > coverage.lcov",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/Projekt-Fitnessapp/backend"
},
"author": "WWIMA20SEA",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Projekt-Fitnessapp/backend"
},
"homepage": "https://github.com/Projekt-Fitnessapp/backend",
"dependencies": {
"@adminjs/express": "^5.1.0",
"@adminjs/mongoose": "^3.0.1",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.6.3",
"@types/react": "^18.0.28",
"@types/response-time": "^2.3.5",
"@types/uuid": "^8.3.4",
"adminjs": "^6.8.7",
"deep-equal-in-any-order": "^2.0.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-basic-auth": "^1.2.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.3",
"google-auth-library": "^8.5.2",
"mongodb": "^4.10.0",
"mongoose": "^6.5.0",
"morgan": "^1.10.0",
"response-time": "^2.3.2",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-mongodb": "^5.1.1",
"winston-transport": "^4.5.0",
"winston-visualize": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.6",
"@types/flat": "^5.0.2",
"@types/mocha": "^9.1.1",
"@types/react-datepicker": "^4.10.0",
"@types/react-dom": "^18.0.11",
"@types/react-redux": "^7.1.25",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@types/styled-system": "^5.1.16",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"chai": "^4.3.6",
"eslint": "^8.22.0",
"mocha": "8.3.0",
"nyc": "^15.1.0",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
}
}