-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2 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
{
"name": "rsp-cpms-checking",
"version": "4.0.0",
"description": "Service to check the status of orphaned payments in CPMS",
"repository": "https://github.com/dvsa/rsp-cpms-checking-workflow",
"author": "",
"license": "MIT",
"engines": {
"node": "20.x"
},
"scripts": {
"check-security": "git secrets --scan",
"check-security-log": "git log -p | scanrepo",
"prepush": "npm run lint && npm test && npm run check-security && npm run check-security-log",
"test": "./node_modules/.bin/mocha --require @babel/register test/**",
"lint": "./node_modules/.bin/eslint src",
"lint:fix": "./node_modules/.bin/eslint src --fix",
"watch": "./node_modules/.bin/nodemon --watch src --exec npm run build",
"offline": "cd ./build && sls offline start --noAuth",
"parallel": "./node_modules/.bin/run-p watch offline",
"build": "webpack-cli --config webpack.config.js",
"start": "rm -rf build && npm run build && npm run parallel",
"build:prod": "rm -rf dist build && webpack-cli --config webpack.production.js",
"build:ci": "webpack-cli --config webpack.production.js"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"archiver": "^5.3.1",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"expect": "^29.3.1",
"fs-extra": "^10.1.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"serverless": "^3.24.1",
"serverless-offline": "^11.3.0",
"sinon": "^14.0.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.0",
"@dvsa/secrets-manager": "^1.2.1",
"aws-sdk": "^2.1638.0",
"aws4": "^1.11.0",
"axios": "^1.7.4",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"url-parse": "^1.5.10"
}
}