-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "nuber-server",
"version": "1.0.0",
"description": "Server for the (N)Uber Clone Course on Nomad Academy. GraphQL, Typescript, NodeJS",
"main": "index.js",
"repository": "https://github.com/nomadcoders/nuber-server",
"author": "Nicolás Serrano Arévalo <itnico.las.me@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "2.0.0",
"@types/jsonwebtoken": "7.2.7",
"@types/mailgun-js": "0.16.0",
"@types/node": "10.5.0",
"@types/twilio": "0.0.9"
},
"scripts": {
"predev": "npm run types",
"dev": "cd src && nodemon --exec ts-node 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",
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "cd src && copy ./api/**/*.graphql ../dist/api",
"start": "cd dist && node ."
},
"dependencies": {
"babel-runtime": "6.26.0",
"bcrypt": "5.0.0",
"class-validator": "0.8.5",
"copy": "0.3.2",
"cors": "2.8.4",
"dotenv": "6.0.0",
"gql-merge": "0.0.6",
"graphql-to-typescript": "0.1.2",
"graphql-tools": "3.0.4",
"graphql-yoga": "1.14.10",
"helmet": "3.12.1",
"jsonwebtoken": "8.3.0",
"mailgun-js": "0.19.0",
"merge-graphql-schemas": "1.5.2",
"morgan": "1.9.0",
"nodemon": "1.17.5",
"pg": "7.4.3",
"ts-node": "7.0.0",
"tslint-config-prettier": "1.13.0",
"twilio": "3.17.4",
"typeorm": "0.2.7",
"typescript": "2.9.2"
},
"now": {
"name": "nuber-server",
"dotenv": ".env.production"
}
}