-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.66 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.66 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "constructive",
"version": "2.0.0",
"author": "Constructive <developers@constructive.io>",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/constructive"
},
"license": "MIT",
"publishConfig": {
"access": "restricted"
},
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"clean": "pnpm -r run clean",
"build": "pnpm -r run build",
"build:dev": "pnpm -r run build:dev",
"lint": "pnpm -r run lint",
"internal:deps": "makage update-workspace",
"deps": "pnpm up -r -i -L"
},
"devDependencies": {
"@jest/test-sequencer": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/jest-in-case": "^1.0.9",
"@types/node": "^22.19.11",
"@types/pg": "^8.18.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^4.4.1",
"jest": "^30.2.0",
"jest-in-case": "^1.0.2",
"lerna": "^8.2.3",
"makage": "^0.1.12",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
},
"overrides": {
"graphql": "^16.9.0"
},
"pnpm": {
"overrides": {
"@dataplan/json": "1.0.0-rc.5",
"graphql": "16.13.0"
},
"publicHoistPattern": [
"@jest/test-sequencer"
],
"packageExtensions": {
"jest-config@*": {
"dependencies": {
"@jest/test-sequencer": "^29.7.0"
}
}
},
"onlyBuiltDependencies": [
"@launchql/protobufjs",
"core-js-pure"
]
}
}