-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
47
48
49
50
51
52
53
54
{
"name": "@objectql/example-project-tracker",
"version": "3.0.1",
"description": "ObjectQL Basic Example Project",
"private": true,
"keywords": [
"objectql",
"module",
"projects",
"tasks",
"basic",
"standard-library"
],
"license": "MIT",
"author": "ObjectQL Contributors",
"repository": {
"type": "git",
"url": "https://github.com/objectql/objectql.git",
"directory": "examples/showcase/project-tracker"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "objectql dev --dir src",
"start": "objectql start --dir src",
"seed": "ts-node src/seed.ts",
"codegen": "objectql types -s src -o src/types",
"build": "tsc && rsync -a --include '*/' --include '*.yml' --exclude '*' src/ dist/",
"repl": "objectql repl",
"test": "jest"
},
"peerDependencies": {
"@objectql/core": "workspace:*",
"@objectql/driver-sql": "workspace:*",
"@objectql/platform-node": "workspace:*",
"@objectql/types": "workspace:*",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@objectql/cli": "workspace:*",
"@objectql/core": "workspace:*",
"@objectql/driver-sql": "workspace:*",
"@objectql/platform-node": "workspace:*",
"@objectql/types": "workspace:*",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.3.0"
}
}