-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "image-library",
"version": "1.0.0",
"description": "",
"main": "/Server.ts",
"scripts": {
"start": "node dist/Server.js",
"watch-node": "nodemon -r dotenv/config dist/server.js -ext js,graphql",
"clean": "rimraf ./dist",
"heroku-postbuild": "tsc",
"watch-ts": "tsc -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-core": "^2.23.0",
"apollo-server-express": "^2.23.0",
"apollo-upload-client": "^16.0.0",
"aws-sdk": "^2.958.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"browser-image-compression": "^1.0.15",
"chalk": "^4.1.0",
"cloudinary": "^1.26.3",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.2.6",
"graphql": "^15.5.0",
"graphql-import": "^1.0.2",
"graphql-upload": "^11.0.0",
"graphql-yoga": "^1.18.3",
"helmet": "^4.5.0",
"mongoose": "^5.11.17",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"shortid": "^2.2.16",
"trimmer": "^2.0.0",
"uuid": "^8.3.2",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.3",
"@types/graphql-upload": "^8.0.6",
"colors": "^1.4.0",
"concurrently": "^6.1.0",
"rimraf": "^3.0.2",
"tsc": "^2.0.3",
"typescript": "^4.4.2"
}
}