-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.99 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "traser",
"version": "1.6.1",
"description": "",
"scripts": {
"start": "NODE_ENV=production node ./src/bin/www",
"start:prof": "NODE_ENV=production node --prof ./src/bin/www",
"start:inspect": "NODE_ENV=production node --inspect ./src/bin/www",
"dev": "NODE_ENV=development nodemon --watch ./src --ext js,json,jsonata,html --watch .env ./src/bin/www ",
"build": "npm ci --only=production",
"test": "jest",
"test:watch": "jest --watchAll",
"test:gh": "jest --forceExit",
"test:detect": "jest --detectOpenHandles ",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/HDRUK/traser.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HDRUK/traser/issues"
},
"homepage": "https://github.com/HDRUK/traser#readme",
"dependencies": {
"@google-cloud/pubsub": "^4.3.3",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.5.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"lodash": "4.17.21",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"http-errors": "^2.0.0",
"jest": "^29.5.0",
"jsonata": "^2.0.3",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"semantic-release": "^24.2.1"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"ignore": [
"*.test.js"
]
},
"devDependencies": {
"eslint": "^8.46.0"
}
}