-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.97 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.97 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
{
"name": "firebase-push-notifications-system",
"version": "1.0.0",
"description": "Firebase Cloud Messaging server implemented with NestJS with SSR React ui application with NextJS",
"author": "Nelson Sandoval",
"private": true,
"license": "MIT",
"scripts": {
"dev": "ts-node --project tsconfig.build.json server/main.ts",
"build": "next build && tsc --project tsconfig.build.json",
"start": "cross-env NODE_ENV=production node .next/production-server/main.js",
"format": "prettier --write \"server/**/*.ts\" \"pages/**/*.tsx\" \"components/**/*.tsx\"",
"docs": "npx @compodoc/compodoc -p tsconfig.json -s"
},
"husky": {
"hooks": {
"pre-commit": "npm run format --staged"
}
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@nestjs/common": "^7.5.1",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^7.5.1",
"@nestjs/jwt": "^7.2.0",
"@nestjs/passport": "^7.1.0",
"@nestjs/platform-express": "^7.5.1",
"@nestjs/typeorm": "^7.1.4",
"@nestpress/next": "^1.2.3",
"@types/bcrypt": "^3.0.0",
"@types/mongodb": "^3.5.33",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"cookies": "^0.8.0",
"csurf": "^1.11.0",
"express-rate-limit": "^5.1.3",
"firebase": "^7.24.0",
"firebase-admin": "^9.3.0",
"helmet": "^4.2.0",
"isomorphic-unfetch": "^3.1.0",
"mongodb": "^3.6.3",
"next": "^10.0.3",
"next-cookies": "^2.0.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^8.5.0",
"prettier-quick": "0.0.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-window": "^1.8.6",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"typeorm": "^0.2.29",
"uuid": "^8.3.1"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.11",
"husky": "^4.2.5",
"@nestjs/cli": "^7.5.2",
"@nestjs/schematics": "^7.2.1",
"@nestjs/testing": "^7.5.1",
"@types/cookie": "^0.4.0",
"@types/cookie-parser": "^1.4.2",
"@types/cookies": "^0.7.5",
"@types/csurf": "^1.11.0",
"@types/express": "^4.17.9",
"@types/express-rate-limit": "^5.1.0",
"@types/firebase": "^3.2.1",
"@types/helmet": "^4.0.0",
"@types/jest": "26.0.10",
"@types/node": "^13.13.30",
"@types/passport-jwt": "^3.0.3",
"@types/react": "^16.9.56",
"@types/react-window": "^1.8.2",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"cross-env": "^7.0.2",
"eslint": "7.7.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.20.1",
"jest": "26.4.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "26.2.0",
"ts-loader": "^6.2.1",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "3.8.3"
}
}