-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "app",
"private": "true",
"type": "module",
"browserslist": [
">0.1% and not dead",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Samsung versions",
"Firefox ESR",
"iOS >= 12.1",
"Safari >= 12"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "standard | snazzy && stylelint 'app/**/*.scss'",
"format": "standard --fix & stylelint 'app/**/*.scss' --fix",
"ci": "bin/setup && bin/rails server",
"dev": "vite dev"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"postcss": "^8.4.49",
"regenerator-runtime": "^0.14.1",
"sass": "^1.81.0",
"snazzy": "^9.0.0",
"standard": "^17.1.2",
"stylelint": "^16.10.0",
"stylelint-config-gds": "^2.0.0",
"vite": "^5.4.11",
"vite-plugin-ruby": "^5.1.1",
"vitest": "^2.1.5"
},
"dependencies": {
"dfe-autocomplete": "github:DFE-Digital/dfe-autocomplete#8e7389ff62a38bc8880323f6c58eed9c8d10f080",
"govuk-frontend": "^5.7.1",
"turndown": "^7.2.0"
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"beforeAll",
"afterEach",
"afterAll",
"before",
"after",
"test",
"expect",
"vi"
]
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
}
}