-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1023 Bytes
/
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
{
"name": "@guardian/cq-source-ns1",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"test": "echo TODO",
"lint": "eslint src/** --ext .ts --no-error-on-unmatched-pattern",
"format": "prettier --write src/**/*.ts",
"build": "tsc",
"start": "tsx src/index.ts serve",
"test:integration": "cloudquery sync config.yml --log-level debug"
},
"dependencies": {
"@cloudquery/plugin-sdk-javascript": "^0.1.20",
"winston": "3.17.0"
},
"devDependencies": {
"@guardian/eslint-config-typescript": "12.0.0",
"@guardian/prettier": "8.0.1",
"@guardian/tsconfig": "1.0.0",
"@types/node": "22.10.1",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "5.5.2"
},
"prettier": "@guardian/prettier",
"eslintConfig": {
"extends": "@guardian/eslint-config-typescript",
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
}
}