-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "puzzle-challenge",
"version": "1.0.0",
"description": "An application in NodeJS and Typescrypt that includes a GraphQL API and Apollo",
"main": "app.js",
"scripts": {
"start": "tsc && node dist/bin/www.js",
"dev": "tsc && nodemon dist/bin/www.js",
"deploy": "tsc && serverless deploy",
"test": "test",
"tsc": "tsc"
},
"author": "Oscar Alonso <oscar.alsa11@gmail.com>",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/graphql": "^14.5.0",
"@types/graphql-resolvers": "^0.3.0",
"@types/lodash": "^4.14.160",
"@types/nodemailer": "^6.4.0",
"@types/pg": "^7.14.4",
"@types/uuid": "^8.3.0",
"apollo-server-express": "^2.14.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-resolvers": "^0.4.2",
"jwt-simple": "^0.5.6",
"moment": "^2.27.0",
"nodemailer": "^6.6.1",
"nodemon": "^2.0.4",
"pg": "^8.3.2",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.0.0",
"typeorm": "^0.2.25",
"typescript": "^4.0.2"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/node": "^14.6.0",
"tslint": "^6.1.3"
}
}