-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
49
50
51
52
53
54
55
{
"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": "npm run lint:javascript && npm run lint:scss",
"lint:scss": "stylelint 'app/**/*.scss'",
"lint:javascript": "standard | snazzy",
"format": "standard --fix && stylelint 'app/**/*.scss' --fix",
"ci": "bin/setup && bin/rails server",
"dev": "vite dev"
},
"devDependencies": {
"autoprefixer": "^10.4.24",
"cssnano": "^7.1.2",
"jsdom": "^28.1.0",
"postcss": "^8.5.6",
"sass": "^1.97.3",
"snazzy": "^9.0.0",
"standard": "^17.1.2",
"stylelint": "^16.26.1",
"stylelint-config-gds": "^2.0.0",
"vite": "^7.3.1",
"vite-plugin-ruby": "^5.1.3",
"vitest": "^4.0.18"
},
"dependencies": {
"dfe-autocomplete": "github:DFE-Digital/dfe-autocomplete#1d4cc65039e11cc3ba9e7217a719b8128d0e4d53",
"govuk-frontend": "^5.14.0"
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"before",
"after"
]
},
"stylelint": {
"extends": "stylelint-config-gds/scss"
}
}