-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "@auth/server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --no-notify src/index.ts",
"build": "rimraf ./dist && npx tsc && copyfiles -u 1 src/**/*.gql dist",
"start": "yarn run build && node dist/index.js"
},
"engines": {
"node": "8.16.1",
"yarn":"1.17.3"
},
"keywords": [],
"author": "Ebrahim",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"apollo-server-express": "^2.5.0",
"bcryptjs": "^2.4.3",
"class-validator": "^0.9.1",
"copyfiles": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"graphql": "^14.3.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"ms": "^2.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"type-graphql": "^0.17.6",
"typegoose": "^5.6.0",
"typescript": "^3.4.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.16.1",
"@types/graphql": "^14.2.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/mongoose": "^5.5.0",
"@types/node": "^12.0.0",
"@types/uuid": "^3.4.4",
"ts-node-dev": "^1.0.0-pre.37",
"@types/dotenv": "^6.1.1"
}
}