-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.44 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
{
"name": "premier_league_api",
"version": "1.0.0",
"description": "An API that serves the latest scores of fixtures of matches in a “Mock Premier League”. Jwt Authentication with Node.js, Typegoose, mongoDB, Mongoose, Docker, Redis, and JsonWebToken",
"main": "app.ts",
"author": "Sandra Okafor",
"license": "MIT",
"scripts": {
"start": "node build/app.js",
"clean": "rimraf build/*",
"postinstall": "tsc",
"logs": "heroku logs --app sandie-league --tail",
"build": "npm run clean && npm run postinstall",
"watch-node": "nodemon build/app.js",
"watch-ts": "tsc -w",
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"test:dev": "jest --watch",
"test": " cross-env NODE_ENV=test nyc --reporter=text --reporter=html mocha --require ts-node/register src/test/index.ts --timeout 10000 --recursive --exit || true"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/config": "^0.0.41",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.6",
"@types/shortid": "^0.0.29",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.1.1",
"jest": "^24.9.0",
"mocha": "^8.1.3",
"mocha-lcov-reporter": "^1.3.0",
"morgan": "^1.10.0",
"nodemon": "^1.19.1",
"nyc": "^15.1.0",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.4",
"@typegoose/typegoose": "^9.10.1",
"@types/chai": "^4.3.1",
"@types/chai-http": "^4.2.0",
"@types/mocha": "^9.1.1",
"@types/supertest": "^2.0.12",
"bcryptjs": "^2.4.3",
"config": "^3.3.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.4.4",
"redis": "^4.2.0",
"shortid": "^2.2.16",
"ts-node-dev": "^2.0.0",
"tslint-config-airbnb": "^5.11.2",
"zod": "^3.17.3"
}
}