This repository has been archived by the owner on Apr 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.9 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": "xui-noa-api",
"version": "0.0.1",
"description": "Notice of Acting Service",
"main": "index.js",
"repository": "[email protected]:hmcts/rpx-xui-noa-api.git",
"author": "",
"license": "MIT",
"scripts": {
"dev": "nodemon server/index.ts | pino-pretty",
"dev:debug": "nodemon --exec 'node -r ts-node/register --inspect-brk' server/index.ts | pino-pretty",
"compile": "ts-node build.ts && tsc",
"start": "node dist/index.js",
"test": "mocha test/**/*.ts --exit",
"test:debug": "mocha --inspect-brk test/**/*.ts --exit",
"test:coverage": "echo 'not implemented'",
"test:a11y": "echo 'not implemented'",
"sonar-scan": "node_modules/sonar-scanner/bin/sonar-scanner",
"lint": "eslint server/api/**/*.ts",
"lint:fix": "eslint server/api/**/*.ts --fix",
"lint:legacy": "eslint .",
"start:legacy": "node server.js",
"test:legacy": "NODE_PATH=. LOG_LEVEL=OFF mocha"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"config": "^3.2.4",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jwt-decode": "^2.2.0",
"notifications-node-client": "^4.7.0",
"otp": "^0.1.3",
"pino": "^5.13.4",
"sonar-scanner": "^3.1.0",
"swagger-express-middleware": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/express": "^4.17.1",
"@types/mocha": "^5.2.7",
"@types/pino": "^5.8.10",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"pino-pretty": "^3.2.1",
"prettier": "^1.18.2",
"shelljs": "^0.8.3",
"supertest": "^4.0.2",
"ts-lint": "^4.5.1",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
}
}