-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.76 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
60
61
{
"name": "asl-workflow",
"version": "1.0.7",
"description": "Workflow API for processing change requests",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint .",
"pretest:unit": "NODE_ENV=test npm run migrate:test",
"test:unit": "mocha ./test",
"test:audit": "audit-ci --high --skip-dev --config .auditrc.json",
"dev": "nodemon -r dotenv/config index.js",
"seed": "SNAKE_MAPPER=true knex seed:run",
"postseed": "bin/deadline-has-passed",
"migrate": "node ./scripts/migrate.js",
"migrate:test": "node ./scripts/migrate-test.js",
"nightly-job": "bin/nightly-jobs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/asl-workflow.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/asl-workflow/issues"
},
"homepage": "https://github.com/UKHomeOffice/asl-workflow#readme",
"dependencies": {
"@ukhomeoffice/asl-constants": "^2.1.8",
"@asl/schema": "^10.18.7",
"@asl/service": "^10.5.1",
"@ukhomeoffice/asl-taskflow": "^3.1.0",
"aws-sdk": "2.1354.0",
"deep-diff": "^1.0.2",
"express": "^4.19.2",
"lodash": "^4.17.21",
"minimatch": "^3.0.4",
"moment": "^2.29.3",
"moment-business-time": "^2.0.0",
"node-fetch": "^2.6.7",
"objection": "^2.2.17",
"uuid": "^3.3.2",
"uuid-validate": "0.0.3"
},
"devDependencies": {
"audit-ci": "^6.5.0",
"chai": "^4.2.0",
"dotenv": "^6.0.0",
"eslint": "^5.0.1",
"@ukhomeoffice/eslint-config-asl": "^3.0.0",
"knex": "^0.21.21",
"mocha": "^10.2.0",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"qs": "^6.9.6",
"sinon": "^7.3.2",
"supertest": "^3.3.0"
}
}