-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
57
58
59
{
"name": "analytics-report-api",
"version": "2.0.0",
"description": "An API for service data generated by Analytics Reporter",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon src/index.js",
"pretest": "NODE_ENV=test npm run migrate",
"test": "NODE_ENV=test mocha",
"migrate": "knex migrate:latest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"coverage": "nyc npm run test",
"install-git-hooks": "cp ./hooks/* .git/hooks/ && chmod -R a+x .git/hooks/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/analytics-reporter-api.git"
},
"author": "Jonathan Hooper",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/18F/analytics-reporter-api/issues"
},
"homepage": "https://github.com/18F/analytics-reporter-api#readme",
"devDependencies": {
"@eslint/js": "^8.57.0",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-prettier": "^5.1.3",
"extend": ">= 3.0.2",
"globals": "^14.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1",
"supertest": "^7.0.0"
},
"dependencies": {
"express": "^4.18.2",
"express-routes-versioning": "^1.0.1",
"express-winston": "^4.2.0",
"knex": "^3.0.1",
"lodash": ">= 4.17.21",
"pg": "^8.11.3",
"winston": "^3.11.0",
"yup": "^1.4.0"
},
"optionalDependencies": {
"newrelic": "^11.3.0"
},
"engines": {
"node": "22.x.x"
}
}