-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
97 lines (97 loc) · 2.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "graphql-chat-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:tsc": "tsc --watch",
"dev:server": "nodemon ./dist/server/index",
"dev:client": "cd client && npm start",
"prod:tsc": "tsc",
"prod:server": "node ./dist/server/index",
"test:server": "jest --runInBand --detectOpenHandles",
"test:client": "cd client && npm run test",
"develop": "concurrently \"npm run dev:tsc\" \"npm run dev:server\" \"npm run dev:client\"",
"start": "tsc && node dist/server/index",
"codegen": "cd client && npm run codegen",
"lint": "eslint ./server/**",
"lint:fix": "eslint ./server/** --fix",
"pretty-quick": "pretty-quick --staged && lint-staged",
"prettier": "prettier --write **/*.{ts,js,css,html}"
},
"author": "Anurag Hazra",
"license": "MIT",
"dependencies": {
"@typegoose/typegoose": "^7.2.0",
"@types/is-ci": "^2.0.0",
"apollo-server-express": "^2.14.2",
"bcryptjs": "^2.4.3",
"class-validator": "^0.12.2",
"cloudinary": "^1.22.0",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.0",
"express-static-gzip": "^2.0.6",
"graphql": "^15.1.0",
"graphql-passport": "^0.6.3",
"graphql-rate-limit": "^2.0.1",
"graphql-type-json": "^0.3.1",
"graphql-upload": "^11.0.0",
"helmet": "^3.22.1",
"is-ci": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.15",
"passport": "^0.4.1",
"passport-auth0": "^1.3.2",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.0.0-rc.2",
"uniqid": "^5.2.0",
"xss-clean": "^0.1.1",
"yup": "^0.29.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cookie-session": "^2.0.40",
"@types/express": "^4.17.6",
"@types/express-mongo-sanitize": "^1.3.2",
"@types/graphql-type-json": "^0.3.2",
"@types/helmet": "0.0.47",
"@types/jest": "^26.0.0",
"@types/mongoose": "^5.7.24",
"@types/node": "^14.0.13",
"@types/passport": "^1.0.3",
"@types/passport-auth0": "^1.0.4",
"@types/uniqid": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"concurrently": "^5.2.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"mongodb-memory-server-core": "^6.6.1",
"nodemon": "^2.0.4",
"passport-mock-strategy": "^2.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.48",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty-quick"
}
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix"
}
}