-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "govuk-frontend-twig",
"version": "1.0.0",
"description": "GOV.UK Frontend Nunjucks templates converted to Twig",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prettier": "prettier --check .",
"all": "npm run lint && npm run prettier && npm run test",
"prepare": "is-ci || husky"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.5",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.upperfirst": "^4.3.7",
"@types/nunjucks": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-formatter-pretty": "^6.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-promise": "^6.1.1",
"govuk-frontend": "^5.0.0",
"husky": "^9.0.10",
"is-ci": "^4.1.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"lodash.camelcase": "^4.3.0",
"lodash.upperfirst": "^4.3.1",
"nunjucks": "^3.2.3",
"prettier": "^3.0.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*": [
"prettier --write",
"eslint --fix"
]
}
}