-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@ons/prototype-kit",
"version": "1.0.6",
"type": "module",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/ONSdigital/prototype-kit",
"author": {
"name": "ONS Digital"
},
"scripts": {
"lint-staged": "lint-staged",
"dedupe-deps": "npx yarn-deduplicate yarn.lock && yarn"
},
"lint-staged": {
"*.scss": [
"prettier --print-width 140 --single-quote --parser postcss --write"
],
"*.js": [
"prettier --print-width 140 --single-quote --parser babel --write",
"eslint --fix"
],
"*.md": [
"prettier --write",
"remark"
]
},
"dependencies": {
"autoprefixer": "10.4.16",
"@babel/core": "7.23.6",
"@babel/eslint-parser": "7.23.3",
"babelify": "10.0.0",
"browser-sync": "3.0.4",
"cssnano": "6.0.1",
"express": "4.21.2",
"eslint": "9.26.0",
"front-matter": "4.0.2",
"glob": "13.0.0",
"gulp": "5.0.1",
"gulp-dart-sass": "1.1.0",
"gulp-if": "3.0.0",
"gulp-postcss": "9.0.1",
"gulp-sourcemaps": "3.0.0",
"lodash": "4.17.23",
"merge-stream": "2.0.0",
"normalize.css": "8.0.1",
"nunjucks": "3.2.4",
"postcss": "8.4.32",
"postcss-mq-optimize": "2.0.1",
"postcss-url": "10.1.3",
"querystring-helpers": "1.0.2",
"rollup": "4.59.0",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"watchify": "4.0.0"
},
"devDependencies": {
"eslint-cli": "1.1.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.5.4",
"husky": "8.0.3",
"lint-staged": "15.5.2",
"prettier": "3.1.1",
"pretty": "2.0.0",
"remark": "15.0.1",
"remark-cli": "12.0.0",
"remark-lint": "9.1.2",
"remark-preset-lint-recommended": "6.1.3"
}
}