-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "poc_node_protoype",
"version": "1.0.0",
"description": "POC Node Prototype",
"main": "dist/server.js",
"scripts": {
"build": "tsc && cp -r src/views dist/",
"start": "node dist/server.js",
"start:dev": "npm run build && nodemon",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "eslint '{src,test}/**/*.ts' --fix",
"prepare": "husky install"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"author": "X-CO Developers",
"license": "MIT",
"devDependencies": {
"@types/cookie-parser": "^1.4.4",
"@types/cookie-session": "^2.0.49",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/node": "^20.6.2",
"@types/nunjucks": "^3.2.4",
"@types/supertest": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.49.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"supertest": "^7.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@co-digital/logging": "^1.0.1",
"@co-digital/login": "^1.0.4",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.18.2",
"express-rate-limit": "^7.3.1",
"express-validator": "^7.1.0",
"govuk-frontend": "^5.3.0",
"helmet": "^7.0.0",
"nunjucks": "^3.2.4"
}
}