-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.16 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
{
"type": "module",
"scripts": {
"start": "concurrently --names \"BUILD,SERVE\" \"npm run dev\" \"npm run serve\"",
"serve": "browser-sync start --no-notify --server 'design-system' --files 'design-system/**'",
"dev": "nodemon metalsmith.js",
"build": "node metalsmith.js",
"lint": "stylelint --config 'stylelint.config.mjs' 'lib/**/*.scss' && eslint --config 'eslint.config.mjs' '**/*.js' && prettier --check '**/*.{js,mjs,scss,json,yml}' 'metalsmith.js'",
"lint:fix": "stylelint --config 'stylelint.config.mjs' --fix 'lib/**/*.scss' && eslint --config 'eslint.config.mjs' --fix '**/*.js' && prettier --write '**/*.{js,mjs,scss,json,yml}' 'metalsmith.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nationalarchives/design-system.git"
},
"author": {
"name": "Andrew Hosgood",
"email": "andrew.hosgood@nationalarchives.gov.uk",
"url": "https://andrewhosgood.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nationalarchives/design-system/issues"
},
"homepage": "https://github.com/nationalarchives/design-system#readme",
"nodemonConfig": {
"watch": [
"src",
"layouts",
"lib",
"metalsmith.js",
".metalsmith"
],
"ext": "js css scss njk json html md"
},
"dependencies": {
"@nationalarchives/frontend": "0.44.0",
"prismjs": "^1.30.0"
},
"devDependencies": {
"@metalsmith/collections": "^1.3.0",
"@metalsmith/in-place": "^5.0.0",
"@metalsmith/js-bundle": "^0.11.0",
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/markdown": "^1.10.0",
"@metalsmith/permalinks": "^3.0.1",
"@metalsmith/sass": "^1.6.0",
"@nationalarchives/eslint-config": "^0.1.4",
"@nationalarchives/stylelint-config": "^0.1.1",
"browser-sync": "^3.0.2",
"concurrently": "^10.0.0",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"js-beautify": "^1.14.8",
"jstransformer-nunjucks": "^1.2.0",
"marked": "^12.0.0",
"metalsmith": "^2.6.0",
"metalsmith-renamer": "^0.5.217",
"metalsmith-sitemap": "^1.2.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.0"
},
"engines": {
"npm": "9.x",
"node": "18.x"
}
}