-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 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
80
81
82
83
84
{
"name": "journalbrew",
"version": "1.0.0",
"description": "A news app",
"main": "index.js",
"scripts": {
"submodule": "git submodule update --init",
"start-dev": "cross-env NODE_ENV=development nodemon ./src/index.ts --exit",
"start-prod": "NODE_ENV=production pm2 start build/index.js",
"stop-prod": "pm2 stop index",
"shutdown-prod": "pm2 delete index",
"kill-all": "taskkill /im node.exe /F",
"build-js": "tsc --build tsconfig.json",
"start-test": "cross-env mocha tsconfig.testing.json -r ts-node/register ./src/post_service/api/post.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivekburman/journalbrew.git"
},
"keywords": [
"news",
"vivek"
],
"author": "vivek burman",
"license": "ISC",
"bugs": {
"url": "https://github.com/vivekburman/journalbrew/issues"
},
"homepage": "https://github.com/vivekburman/journalbrew#readme",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/ms": "^0.7.31",
"bcrypt": "^5.0.0",
"busboy": "^0.3.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.23.3",
"http-errors": "^1.8.0",
"imagemin": "^7.0.1",
"imagemin-pngquant": "^9.0.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.1.0",
"p-queue": "^6.6.2",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"redis": "^3.0.2",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/busboy": "^0.2.3",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.7",
"@types/helmet": "0.0.48",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.10",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.3",
"@types/morgan": "^1.9.1",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^14.0.26",
"@types/passport": "^1.0.4",
"@types/passport-google-oauth20": "^2.0.3",
"@types/redis": "^2.8.27",
"@types/sinon-chai": "^3.2.4",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^7.0.2",
"jest": "^26.4.2",
"mocha": "^8.1.1",
"nodemon": "^2.0.4",
"raml2html": "^7.6.0",
"sass": "^1.24.4",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}