-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1018 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
38
39
{
"name": "graphql-typescript-demo",
"version": "1.0.0",
"description": "Demo application, simple CRUD uses graphql and typescript",
"main": "index.js",
"scripts": {
"start": "nodemon -w src --ext ts --exec ts-node backend/src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DominikMarciniszyn/graphql-typescript-demo.git"
},
"keywords": [
"graphql",
"typescript",
"nodejs",
"typeorm"
],
"author": "Rouch",
"license": "ISC",
"bugs": {
"url": "https://github.com/DominikMarciniszyn/graphql-typescript-demo/issues"
},
"homepage": "https://github.com/DominikMarciniszyn/graphql-typescript-demo#readme",
"devDependencies": {
"nodemon": "2.0.3",
"ts-node": "8.9.1",
"typescript": "3.8.3"
},
"dependencies": {
"apollo-server": "2.14.2",
"graphql": "14.1.1",
"reflect-metadata": "0.1.13",
"sqlite3": "4.2.0",
"type-graphql": "0.17.6",
"typeorm": "0.3.0",
"typeorm-encrypted": "0.5.4"
}
}