-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.96 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
{
"name": "example-hasura-projections-service",
"version": "0.0.0-development",
"description": "example-hasura-projections-service",
"type": "module",
"bin": {
"start": "./src/bin/start.mjs"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "DEBUG=example:* nodemon",
"lint:fix": "eslint --fix src __tests__ --ext=.js,.ts",
"lint": "eslint src __tests__ --ext=.js,.ts",
"prepare": "husky install || echo 'Husky not installed'",
"start:build": "DEBUG=knativebus,sourced*,register-server*,example:* HANDLER_BASE_PATH=dist node ./dist/bin/start.js",
"start": "DEBUG=knativebus,sourced*,register-server*,example:* node --loader ts-node/esm ./src/bin/start.ts",
"test:integration:watch": "DEBUG=knativebus,tests* jest --config jest.integration.json --verbose --watch",
"test:integration": "DEBUG=knativebus,tests* jest --config jest.integration.json --verbose",
"test:watch": "DEBUG=tests,example:* jest --config jest.json --watch --coverage --verbose",
"test": "DEBUG=tests,example:* jest --no-cache --config ./jest.json --coverage --verbose"
},
"dependencies": {
"axios": "1.1.3",
"axios-retry": "3.3.1",
"debug": "4.3.4",
"express": "4.18.2",
"express-pino-logger": "7.0.0",
"pino": "8.7.0",
"register-server-handlers": "4.2.4"
},
"devDependencies": {
"@jest/globals": "29.3.1",
"@types/debug": "4.1.7",
"@types/jest": "29.2.2",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.1.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.0.3",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"license": "ISC",
"snyk": true,
"lint-staged": {
"*.{js,mjs}": "eslint --cache --fix"
}
}