-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 847 Bytes
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
{
"name": "graphql_helloworld",
"version": "1.0.0",
"author": "baerlux@pm.me",
"private": true,
"scripts": {
"test": "rimraf db/test_db.sqlite && jest -i",
"dev": "ts-node-dev src/index.ts",
"build": "tsc",
"dev2": "ts-node src/index.ts"
},
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"get-port": "^5.1.1",
"graphql-request": "^3.4.0",
"jest": "^27.0.4",
"rimraf": "^2.7.1",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
},
"dependencies": {
"apollo-server": "^2.25.1",
"class-validator": "^0.13.1",
"graphql": "^15.5.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.34"
}
}