-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.99 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-todo-model-service",
"version": "0.0.0-development",
"description": "example-todo-model-service",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "DEBUG=${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=${DEBUG:-example*} HANDLER_BASE_PATH=dist node ./dist/bin/start.js",
"start": "DEBUG=${DEBUG:-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_COLORS=true DEBUG=${DEBUG:-example*,tests} jest --config jest.json --watch --coverage --verbose",
"test": "DEBUG_COLORS=true DEBUG=${DEBUG:-example*,tests} jest --no-cache --config ./jest.json --coverage --verbose"
},
"dependencies": {
"axios": "1.1.3",
"axios-retry": "3.3.1",
"debug": "4.3.4",
"knative-microservice": "1.0.3",
"knativebus": "2.3.17",
"pino": "8.7.0",
"sourced": "4.0.6",
"sourced-queued-repo-promise": "1.1.0",
"sourced-repo-typeorm": "3.2.7",
"uuid": "9.0.0"
},
"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,ts}": "eslint --cache --fix"
}
}