-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 921 Bytes
/
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
{
"name": "graphql-oracle",
"version": "1.0.0",
"description": "typescript graphql-oracle example",
"main": "src/app.ts",
"scripts": {
"start": "ts-node src/app.ts --fast",
"start-n": "nodemon",
"ts-node": "ts-node",
"tslint": "tslint"
},
"author": "Danilo Silva",
"license": "ISC",
"dependencies": {
"@types/express": "^4.11.1",
"@types/graphql": "^0.12.7",
"@types/node": "^9.6.1",
"@types/oracledb": "^1.11.34",
"apollo-server-express": "^1.3.4",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^2.23.1",
"helmet": "^3.12.0",
"oracledb": "^2.1.2",
"rxjs": "^5.5.8",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"devDependencies": {
"nodemon": "^1.17.2"
}
}