-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.22 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
{
"name": "express-server",
"version": "1.0.0",
"main": "dist/server.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "cross-env NODE_ENV=production node ./dist/server.js",
"dev": "cross-env NODE_ENV=development nodemon ./dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write \"**/*.{ts,json,yml}\"",
"prepare": "husky install"
},
"dependencies": {
"@sendgrid/mail": "^7.4.6",
"aws-sdk": "^2.901.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-form-data": "^2.0.17",
"express-graphql": "^0.12.0",
"express-slow-down": "^1.4.0",
"file-type": "^16.5.0",
"graphql": "^15.5.0",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-fetch": "^2.6.1",
"pg": "^8.5.1",
"rate-limit-redis": "^2.1.0",
"redis": "^3.1.0",
"rimraf": "^3.0.2",
"serialize-error": "^8.0.1",
"sharp": "^0.29.1",
"shortid": "^2.2.16"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie": "^0.4.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-form-data": "^2.0.2",
"@types/express-rate-limit": "^5.1.3",
"@types/express-slow-down": "^1.3.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.7.10",
"@types/node": "^16.7.11",
"@types/pg": "^8.6.1",
"@types/rate-limit-redis": "^1.7.2",
"@types/redis": "^2.8.31",
"@types/sharp": "^0.29.1",
"@types/shortid": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"typescript": "^4.4.2"
},
"lint-staged": {
"*.+(ts|tsx|json|md|mdx)": [
"yarn prettier"
]
}
}