-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "eccomerece-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start-ts": "ts-node src/index.ts",
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"dev-ts": "nodemon --exec ts-node src/index.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.11",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.1",
"@types/node": "^14.14.22",
"dotenv": "^8.2.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"@typegoose/typegoose": "^7.4.8",
"apollo-server-express": "^2.19.2",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^15.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "5.10.1",
"reflect-metadata": "^0.1.13",
"stripe": "^8.140.0",
"type-graphql": "^1.1.1"
}
}