-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.16 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.16 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "podcast-backend",
"version": "1.0.0",
"description": "The backend for the podcast app",
"main": "index.js",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"dev": "ts-node src/index.ts",
"db:migrate": "node_modules/.bin/sequelize db:migrate --migrations-path ./src/db/migrations",
"test": "env-cmd -f jest --forceExit --detectOpenHandles --coverage",
"travis": "jest --forceExit --detectOpenHandles --coverage",
"lint": "./node_modules/.bin/tslint --init",
"watch": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"build": "babel src --out-dir lib --extensions '.ts,.tsx'",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Podcastup/podcast-backend.git"
},
"author": "Paul Kayongo",
"license": "ISC",
"bugs": {
"url": "https://github.com/Podcastup/podcast-backend/issues"
},
"homepage": "https://github.com/Podcastup/podcast-backend#readme",
"dependencies": {
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/polyfill": "^7.6.0",
"@hapi/joi": "^15.1.1",
"@types/nodemailer": "^6.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"celebrate": "^12.0.1",
"chance": "^1.1.4",
"cors": "^2.8.5",
"eslint": "^6.8.0",
"express": "^4.17.1",
"global": "^4.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.14",
"nodemailer": "^6.4.6",
"object-sizeof": "^1.5.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-magic-link": "^2.0.0",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"pretty-bytes": "^5.3.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.3",
"smart-buffer": "^4.1.0",
"snyk": "^1.230.5",
"swagger-ui-express": "^4.1.4",
"typescript": "^3.8.3",
"uuid": "^3.3.3",
"validator": "^9.4.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.6.2",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.7",
"@types/bcrypt": "^3.0.0",
"@types/chance": "^1.0.9",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.3",
"@types/hapi__joi": "^16.0.12",
"@types/node": "^13.9.2",
"@types/sequelize": "^4.28.4",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.5",
"babel-watch": "^7.0.0",
"coveralls": "^3.0.4",
"env-cmd": "^9.0.3",
"eslint": "^6.8.0",
"jest": "^24.8.0",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.8.1",
"tsc-watch": "^4.2.3"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"**/src/**/*.{js,jsx}",
"!src/index.js",
"!src/utils/passport.js"
]
}
}