-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 KB
/
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
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
{
"name": "@timescaledb/monorepo",
"version": "0.0.0-alpha.6",
"packageManager": "pnpm@9.15.3",
"scripts": {
"lint": "eslint .",
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"clean": "find . -type d \\( -name \"node_modules\" -o -name \"build\" -o -name \"dist\" \\) -exec rm -rf {} + && rm ./pnpm-lock.yaml",
"format": "prettier . --write --ignore-path .prettierignore",
"format:check": "prettier . --check --ignore-path .prettierignore",
"release": "node ./packages/utils/dist/release.js"
},
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@babel/preset-typescript": "7.24.7",
"@babel/runtime": "7.25.6",
"@jest/globals": "29.7.0",
"@types/debug": "^4.1.12",
"@types/express": "5.0.0",
"@types/jest": "29.5.12",
"@types/node": "22.4.1",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "8.10.0",
"@typescript-eslint/parser": "8.10.0",
"babel-loader": "9.1.3",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-n": "17.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"supertest": "7.0.0",
"ts-jest": "29.2.4",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsx": "4.19.2",
"typescript": "5.5.4",
"@tsconfig/node22": "^22.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"typescript",
"ts-node",
"@tsconfig/*",
"@types/*",
"jest",
"@jest/*",
"prettier"
]
}
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
}
}