forked from shaunganley/nodejs-express-govuk-axios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 863 Bytes
/
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
{
"scripts": {
"start": "tsc && node dist/app.js",
"test": "mocha --require ts-node/register test/unit/**/*.ts",
"test-ui": "mocha --require ts-node/register --timeout 10000 test/ui/**/*.ts"
},
"dependencies": {
"express": "^4.19.2",
"govuk-frontend": "^5.3.1",
"nunjucks": "^3.2.4"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.14",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@types/nunjucks": "^3.2.6",
"@types/selenium-webdriver": "^4.1.22",
"@types/sinon": "^17.0.3",
"axios-mock-adapter": "^1.21.4",
"chai": "^4.3.7",
"chromedriver": "^125.0.2",
"mocha": "^10.2.0",
"sass": "^1.75.0",
"selenium-webdriver": "^4.9.0",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}