-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.77 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
{
"name": "prison-services-feedback-and-support",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=prison-services-feedback-and-support:* npm run devstart",
"security_audit": "npx audit-ci --config audit-ci.json",
"record-build-info": "node ./bin/record-build-info",
"lint": "node node_modules/eslint/bin/eslint.js ./",
"test": "jest",
"prepare": "husky install",
"compile-sass": "sass --load-path=node_modules/govuk-frontend --load-path=node_modules/@ministryofjustice/frontend --load-path=. ./sass:./build/static/stylesheets --style compressed",
"compile-sass-watch": "npm run compile-sass && sass --load-path=. ./sass:./build/static/stylesheets --watch --style compressed"
},
"engines": {
"node": "^v20.9.0",
"npm": "^10.9.0"
},
"dependencies": {
"@ministryofjustice/frontend": "^2.2.4",
"cookie-parser": "~1.4.7",
"debug": "~4.3.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"govuk-frontend": "^5.7.1",
"http-errors": "^2.0.0",
"mkdirp": "^3.0.1",
"morgan": "~1.10.0",
"nunjucks": "^3.2.4"
},
"devDependencies": {
"audit-ci": "^6.6.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^2.8.8",
"sass": "^1.80.3"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"eslint --fix"
]
},
"nodemonConfig": {
"ignore": [
".circleci/*",
"node_modules/*"
],
"delay": 2500,
"ext": "js,njk"
}
}