-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "nuber-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"predev": "yarn run types",
"dev": "cd src && nodemon --exec ts-node -r tsconfig-paths/register index.ts -e ts,graphql",
"pretypes": "gql-merge --out-file ./src/schema.graphql ./src/api/**/*.graphql",
"types": "graphql-to-typescript ./src/schema.graphql ./src/types/graph.d.ts"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/helmet": "^0.0.45",
"@types/mailgun-js": "^0.22.3",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.14",
"@types/twilio": "^0.0.10",
"babel-runtime": "^6.26.0",
"gql-merge": "^0.0.6",
"graphql-to-typescript": "^0.1.2",
"nodemon": "^2.0.1",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.3"
},
"dependencies": {
"@types/jsonwebtoken": "^8.3.5",
"bcrypt": "^3.0.8",
"class-validator": "^0.11.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"graphql-tools": "^4.0.6",
"graphql-yoga": "^1.18.3",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"merge-graphql-schemas": "^1.7.3",
"morgan": "^1.9.1",
"pg": "^7.14.0",
"twilio": "^3.39.0",
"typeorm": "^0.2.21"
}
}