-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
50 lines (50 loc) · 1.11 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": "apply-for-teacher-training",
"private": true,
"engines": {
"node": "20.x",
"yarn": "^1.22.0"
},
"dependencies": {
"@ministryofjustice/frontend": "^3.0.2",
"@rails/webpacker": "^5.4.4",
"accessible-autocomplete": "^3.0.1",
"dfe-autocomplete": "github:DFE-Digital/dfe-autocomplete#8e7389ff62a38bc8880323f6c58eed9c8d10f080",
"govuk-frontend": "^5.7.1",
"jquery": "^3.7.1",
"postcss": "^8.4.49",
"puppeteer": "^23.7.1"
},
"devDependencies": {
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"standard": "^17.1.2",
"stylelint": "^16.10.0",
"stylelint-config-gds": "^2.0.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-order": "^6.0.4"
},
"scripts": {
"lint": "standard 'app/frontend/packs'",
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"roots": [
"app"
]
},
"standard": {
"env": [
"jest"
],
"globals": [
"$",
"history",
"zE",
"CustomEvent"
]
}
}