-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
55
56
{
"name": "nuber-server",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/DalYoon/nuber-server",
"author": "dal yoon <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^2.0.0",
"@types/cors": "^2.8.4",
"@types/helmet": "^0.0.38",
"@types/jsonwebtoken": "^7.2.8",
"@types/mailgun-js": "^0.16.0",
"@types/morgan": "^1.7.35",
"@types/node": "^10.5.2",
"@types/twilio": "^0.0.9"
},
"scripts": {
"predev": "yarn 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": {
"bcrypt": "^3.0.0",
"class-validator": "^0.8.5",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"graphql-tools": "^3.0.5",
"graphql-yoga": "^1.14.12",
"helmet": "^3.12.1",
"jsonwebtoken": "^8.3.0",
"mailgun-js": "^0.20.0",
"merge-graphql-schemas": "^1.5.2",
"morgan": "^1.9.0",
"pg": "^7.4.3",
"twilio": "^3.17.5",
"typeorm": "^0.2.7",
"babel-runtime": "^6.26.0",
"copy": "^0.3.2",
"gql-merge": "^0.0.6",
"graphql-to-typescript": "^0.1.2",
"nodemon": "^1.17.5",
"ts-node": "^7.0.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^2.9.2"
},
"now": {
"name": "nuber-server",
"dotenv": ".env.production"
}
}