-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 KB
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
{
"name": "app",
"private": "true",
"dependencies": {
"@hotwired/turbo-rails": "^8.0.23",
"accessible-autocomplete": "^3.0.1",
"esbuild": "^0.27.4",
"idb": "^8.0.3",
"nhsuk-frontend": "^10.4.2",
"sass": "^1.98.0"
},
"scripts": {
"build:css": "sass ./app/assets/stylesheets:./app/assets/builds --no-source-map --pkg-importer=node --quiet-deps --style compressed",
"build": "esbuild ./app/assets/javascripts/*.js --bundle --outdir=app/assets/builds --public-path=assets --minify",
"test": "jest"
},
"devDependencies": {
"@prettier/plugin-ruby": "^4.0.4",
"@types/jest": "^30.0.0",
"esbuild-jest": "^0.5.0",
"fake-indexeddb": "^4.0.2",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-fetch-mock": "^3.0.3",
"officecrypto-tool": "^0.0.19",
"prettier": "^3.8.1",
"stylelint": "^16.26.1",
"stylelint-config-gds": "^2.0.0",
"stylelint-order": "^8.1.1"
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"app/assets/builds/",
"node_modules/"
],
"transformIgnorePatterns": [],
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(j|t)sx?$": [
"esbuild-jest",
{
"sourcemap": true
}
]
}
}
}