-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "hls-example-project",
"version": "1.0.0",
"description": "Example project demonstrating Hook Line Sinker (HLS) capabilities",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"test:integration": "jest --testPathPattern=integration",
"test:watch": "jest --watch",
"lint": "eslint src tests --ext .js,.jsx",
"format": "prettier --write \"src/**/*.{js,jsx,json}\" \"tests/**/*.{js,jsx,json}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,json}\" \"tests/**/*.{js,jsx,json}\"",
"build": "webpack --mode production",
"typecheck": "tsc --noEmit"
},
"keywords": [
"hls",
"webhook",
"github",
"automation",
"ci-cd",
"example"
],
"author": "HLS Example Team",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"dotenv": "^16.3.1",
"axios": "^1.6.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/example/hls-example-project.git"
},
"bugs": {
"url": "https://github.com/example/hls-example-project/issues"
},
"homepage": "https://github.com/example/hls-example-project#readme"
}