forked from shaunganley/nodejs-express-axios-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.17 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.17 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
60
61
62
{
"name": "nodejs-express-axios-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"start": "tsc && node dist/app.js",
"dev": "nodemon src/app.ts",
"linter": "npx eslint .",
"test": "mocha --require ts-node/register test/unit/**/*.ts",
"test-ui": "mocha --require ts-node/register --timeout 10000 test/ui/**/*.ts",
"test-ui-local": "mocha --require ts-node/register --timeout 10000 test/ui/local/*.ts",
"test-ui-aws": "mocha --require ts-node/register --timeout 10000 test/ui/aws/*.ts",
"test-ui-local-001": "mocha --require ts-node/register --timeout 10000 test/ui/local/LocalJobRoleTests.ts",
"test-ui-aws-001": "mocha --require ts-node/register --timeout 10000 test/ui/aws/AwsJobRoleTests.ts",
"test-ui-local-040": "mocha --require ts-node/register --timeout 10000 test/ui/local/LocalLoginUITests.ts",
"test-ui-aws-040": "mocha --require ts-node/register --timeout 10000 test/ui/aws/AwsLoginUITests.ts"
},
"keywords": [],
"author": "Shaun Ganley <shaung@kainos.com>",
"license": "ISC",
"dependencies": {
"audit": "^0.0.6",
"axios": "^1.7.5",
"axios-mock-adapter": "^2.0.0",
"body-parser": "^1.20.2",
"chai": "^5.1.1",
"core-js": "^3.38.1",
"express": "^4.19.2",
"express-session": "^1.18.0",
"jwt-decode": "^4.0.0",
"nunjucks": "^3.2.4",
"selenium-webdriver": "^4.24.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.14",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/mocha": "^10.0.7",
"@types/node": "^20.16.1",
"@types/nunjucks": "^3.2.6",
"@types/selenium-webdriver": "^4.1.22",
"@types/sinon": "^17.0.3",
"@types/supertest": "^6.0.2",
"axios-mock-adapter": "^1.21.4",
"chai": "^4.3.7",
"chromedriver": "^127.0.2",
"eslint": "^9.9.1",
"eslint-plugin-chai-friendly": "^1.0.1",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"sass": "^1.75.0",
"selenium-webdriver": "^4.24.0",
"sinon": "^2.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.3.0"
}
}