generated from NikhilNanjappa/govuk-express-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "bin-collection",
"version": "1.0.0",
"description": "App to show bin collection dates",
"author": "kainikhil@gmail.com",
"license": "ISC",
"engines": {
"node": "18.x"
},
"scripts": {
"build": "webpack --mode production",
"start": "node ./src/server/index.js",
"start:watch": "npm run build && nodemon -e js,njk,html ./src/server/index.js",
"test:lint": "./node_modules/.bin/eslint .",
"test:lint:fix": "./node_modules/.bin/eslint . --fix",
"test:unit": "LOGLEVEL=fatal NODE_ENV= jest --coverage"
},
"nodemonConfig": {
"ignore": [
"*/__test__/*"
],
"ext": "js,njk,html"
},
"dependencies": {
"@babel/plugin-transform-runtime": "7.22.5",
"@babel/preset-env": "7.22.5",
"@babel/register": "7.21.0",
"babel-loader": "8.3.0",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"css-loader": "6.8.1",
"csurf": "1.11.0",
"eslint-loader": "4.0.2",
"express": "4.18.2",
"express-session": "1.17.3",
"express-validator": "7.0.1",
"glob": "8.1.0",
"helmet": "6.2.0",
"i18next": "22.4.15",
"i18next-http-middleware": "3.3.2",
"i18next-node-fs-backend": "2.1.3",
"luxon": "3.3.0",
"mini-css-extract-plugin": "2.7.6",
"nunjucks": "3.2.4",
"sass-loader": "13.2.2",
"webpack": "5.82.1",
"webpack-node-externals": "3.0.0"
},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/eslint-parser": "7.11.0",
"@babel/runtime": "7.21.5",
"autoprefixer": "10.4.14",
"eslint": "7.32.0",
"jest": "29.5.0",
"nodemon": "2.0.22",
"postcss": "8.4.23",
"postcss-loader": "7.3.0",
"precss": "4.0.0",
"sass": "1.62.1",
"webpack-cli": "^5.1.4"
}
}