-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "rpetemplate-frontend",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "NODE_ENV=production ./node_modules/.bin/ts-node -r tsconfig-paths/register src/main/server.ts",
"start:dev": "nodemon --config nodemon.json",
"lint": "sass-lint -v -q && eslint . --ext .js,.jsx,.ts,.tsx",
"build": "yarn webpack --config webpack.config.js",
"build:prod": " yarn webpack --mode production --config webpack.config.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:routes": "jest -c jest.routes.config.js",
"test:a11y": "jest -c jest.a11y.config.js --maxWorkers 15",
"sonar-scan": "sonar-scanner",
"test:smoke": "echo 'TODO add smoke tests' && exit 1",
"test:functional": "echo 'TODO add functional tests' && exit 1",
"cichecks": "yarn && yarn build && yarn lint && yarn test && yarn test:routes && yarn test:a11y"
},
"dependencies": {
"@hmcts/info-provider": "^1.0.0",
"@hmcts/nodejs-healthcheck": "^1.7.0",
"@hmcts/nodejs-logging": "^3.0.1",
"@types/config": "^0.0.36",
"@types/cookie-parser": "^1.4.2",
"@types/csurf": "^1.9.36",
"@types/es6-promisify": "^6.0.0",
"@types/express": "^4.17.2",
"@types/glob": "^7.1.3",
"@types/helmet": "^0.0.45",
"@types/node": "^13.7.0",
"@types/nunjucks": "^3.1.3",
"@types/require-directory": "^2.1.1",
"@types/serve-favicon": "^2.5.0",
"config": "^3.2.5",
"cookie-parser": "^1.4.4",
"csurf": "^1.11.0",
"express": "^4.17.1",
"express-nunjucks": "^2.2.3",
"glob": "^7.1.6",
"govuk-frontend": "^3.5.0",
"helmet": "^3.21.2",
"jquery": "^3.5.0",
"nunjucks": "^3.2.0",
"require-directory": "^2.1.1",
"serve-favicon": "^2.5.0",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@types/chai-as-promised": "^7.1.1",
"@types/copy-webpack-plugin": "^5.0.0",
"@types/jest": "^25.1.3",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/supertest": "^2.0.8",
"@types/webpack-dev-middleware": "^3.7.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/eslint-plugin-tslint": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"mini-css-extract-plugin": "^0.9.0",
"nock": "^11.7.2",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"pa11y": "^5.3.0",
"request": "^2.88.0",
"sass-lint": "^1.13.1",
"sass-loader": "^8.0.2",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"sonar-scanner": "^3.1.0",
"style-loader": "^1.1.3",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"tslint": "5.20.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-node-externals": "^1.7.2"
}
}