-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "nhs-assignment-demo",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"test": "mocha --require ts-node/register --recursive --exit './test/*.ts'",
"build": "tsc --project tsconfig.json",
"start:dev": "ts-node-dev --respawn --transpile-only index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-session": "^1.17.1",
"express-validator": "^6.6.0",
"nhsbsa-frontend": "0.3.1",
"nunjucks": "^3.2.2"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/helmet": "0.0.47",
"@types/jsdom": "^16.2.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.24",
"@types/nunjucks": "^3.1.3",
"@types/supertest": "^2.0.10",
"chai": "^4.2.0",
"helmet": "^3.23.3",
"jsdom": "^16.3.0",
"mocha": "^8.0.1",
"supertest": "^4.0.2",
"ts-node-dev": "^1.0.0-pre.52",
"typescript": "^3.9.7"
}
}