-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "clever-genees-uploader-api",
"version": "1.0.0",
"description": "api for uploading images",
"author": "Eugene Peter Maestrado",
"license": "ISC",
"engines": {
"node": "14.x",
"yarn": "1.22.10"
},
"scripts": {
"watch": "tsc -w",
"develop": "rm -rf dist && tsc && nodemon dist/app.js",
"start": "dist/app.js",
"rebuild": "rm -rf dist && tsc"
},
"dependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cookie-session": "^2.0.43",
"@types/node-fetch": "^2.5.10",
"apollo-server-express": "^2.23.0",
"aws-sdk": "^2.1021.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-playground": "^1.3.17",
"graphql-playground-middleware-express": "^1.7.22",
"graphql-request": "^3.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.8",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"type-graphql": "^1.1.1",
"typescript": "^4.2.3",
"uuid": "^8.3.2",
"validator": "^13.6.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^14.14.35",
"@types/rethinkdbdash": "github:typed-typings/rethinkdbdash",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.6.3"
}
}