-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
41
42
43
44
45
46
{
"name": "@objectql/example-express-server",
"version": "3.0.0",
"description": "Express API Integration Example for ObjectQL",
"private": true,
"keywords": [
"objectql",
"module",
"express",
"api",
"rest",
"graphql",
"server",
"interface"
],
"license": "MIT",
"author": "ObjectQL Contributors",
"repository": {
"type": "git",
"url": "https://github.com/objectql/objectql.git",
"directory": "examples/integrations/express-server"
},
"scripts": {
"build": "tsc && cp src/*.yml dist/ || true",
"start": "node dist/index.js",
"test": "jest"
},
"dependencies": {
"@objectql/core": "workspace:*",
"@objectql/server": "workspace:*",
"@objectql/types": "workspace:*",
"@objectql/driver-sql": "workspace:*",
"@objectql/platform-node": "workspace:*",
"express": "^4.18.2",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"jest": "^30.2.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0"
}
}