-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "link-alive",
"version": "1.0.0",
"description": "Express GraphQL",
"private": true,
"author": "Raj Pitchaimani",
"scripts": {
"start": "nodemon --exec ./node_modules/.bin/ts-node -- -r dotenv/config ./src/bootstrap.ts",
"start-dist": "node .build/bootstrap.js | bunyan",
"build": "tsc",
"deploy-dev": "sls deploy"
},
"dependencies": {
"apollo-server-express": "^2.0.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"graphql": "^0.13.2",
"inversify": "^4.13.0",
"inversify-binding-decorators": "^4.0.0",
"inversify-express-utils": "^6.1.0",
"lodash": "^4.17.10",
"reflect-metadata": "^0.1.12",
"serverless-http": "^1.6.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/lodash": "^4.14.116",
"dotenv": "^6.0.0",
"nodemon": "^1.18.3",
"serverless-plugin-typescript": "^1.1.5",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "3.0.1"
},
"engines": {
"node": "8.9.3",
"npm": "5.5.1"
}
}