-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.78 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.78 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
{
"name": "cards",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "cross-env NODE_ENV=production ts-node start.ts",
"watch": "cross-env NODE_ENV=development nodemon --exec ./node_modules/.bin/ts-node start.ts --ignore ./angular-cards/",
"buildng": "cd angular-cards && ng build --prod",
"heroku-ng-build": "cd angular-cards && npm i --force && ng build --prod --output-path ../dist/angular-cards",
"stop": "ts-node stop.js",
"heroku-postbuild": "chmod +x ./build.sh && ./build.sh"
},
"repository": {
"type": "git",
"url": "git@github.com/StudyGrow/Cards.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@angular/cli": "^13.1.2",
"@typegoose/typegoose": "^9.0.1",
"awilix": "^4.3.3",
"awilix-express": "^4.0.0",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"celebrate": "^14.0.0",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"crypto-random-string": "3.3.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"kill-port": "^1.6.1",
"mailgun": "^0.5.0",
"mailgun-js": "^0.22.0",
"mongoose": "^6.0.8",
"node-cron": "^3.0.1",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"promise-retry": "^2.0.1",
"socket.io": "^2.4.1",
"socket.io-client": "^2.4.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"ts-node": "^10.8.1",
"typescript": "^4.1.6",
"uniqid": "^5.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/connect-mongo": "^3.1.3",
"@types/cors": "^2.8.10",
"@types/crypto-random-string": "^2.0.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-validator": "^3.0.0",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/mailgun-js": "^0.22.11",
"@types/mongoose": "^5.10.5",
"@types/node": "^14.14.39",
"@types/node-cron": "^3.0.1",
"@types/passport": "^1.0.6",
"@types/passport-google-oauth": "^1.0.41",
"@types/passport-local": "^1.0.33",
"@types/promise-retry": "^1.1.3",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.36",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"@types/uniqid": "^5.3.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"nodemon": "^2.0.7"
}
}