-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "asl-metrics",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -r dotenv/config index.js",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint .",
"pretest:unit": "npm run migrate",
"test:unit": "mocha ./test --recursive",
"test:audit": "audit-ci --high --skip-dev --config .auditrc.json",
"migrate": "npm run migrate:flow && npm run migrate:asl",
"migrate:asl": "NODE_ENV=test knex migrate:latest --knexfile ./node_modules/@asl/schema/knexfile.js",
"migrate:flow": "node ./scripts/migrate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/asl-metrics.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/asl-metrics/issues"
},
"homepage": "https://github.com/UKHomeOffice/asl-metrics#readme",
"dependencies": {
"@asl/projects": "^15.7.0",
"@asl/service": "^10.5.3",
"@ukhomeoffice/asl-constants": "^2.2.0",
"@ukhomeoffice/asl-dictionary": "^2.1.0",
"express": "^4.17.1",
"knex": "^0.21.21",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"moment-business-time": "^2.0.0",
"pg": "^8.6.0",
"through2": "^3.0.1",
"uuid-validate": "^0.0.3",
"winston": "^3.4.0"
},
"devDependencies": {
"@asl/schema": "^10.19.0",
"@babel/register": "^7.8.3",
"@ukhomeoffice/asl-taskflow": "^3.1.0",
"@ukhomeoffice/eslint-config-asl": "^3.0.0",
"audit-ci": "^6.5.0",
"dotenv": "^8.2.0",
"eslint": "^8.57.1",
"mocha": "^10.7.3",
"nodemon": "^2.0.4",
"sinon": "^9.0.2",
"uuid": "^8.1.0"
},
"overrides": {
"@ukhomeoffice/frontend-toolkit": "^3.0.0"
}
}