-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.28 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
62
63
64
65
66
67
68
69
{
"type": "module",
"scripts": {
"start": "concurrently --names \"BUILD,SERVE\" \"npm run dev\" \"npm run serve\"",
"serve": "browser-sync start --no-notify --server --startPath 'design-system' --files 'build/**'",
"dev": "nodemon metalsmith.js",
"build": "node metalsmith.js",
"lint": "prettier --check '{src,lib,layouts,.metalsmith}/**/*.{js,mjs,scss,json}' 'metalsmith.js' && stylelint --config 'node_modules/@nationalarchives/frontend/config/stylelint.config.js' 'lib/**/*.scss'",
"lint:fix": "prettier --write '{src,lib,layouts,.metalsmith}/**/*.{js,mjs,scss,json}' 'metalsmith.js' && stylelint --config 'node_modules/@nationalarchives/frontend/config/stylelint.config.js' --fix 'lib/**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nationalarchives/design-system.git"
},
"author": {
"name": "Andrew Hosgood",
"email": "[email protected]",
"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.4.0",
"prismjs": "^1.29.0"
},
"devDependencies": {
"@metalsmith/collections": "^1.3.0",
"@metalsmith/in-place": "^5.0.0",
"@metalsmith/js-bundle": "^0.9.0",
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/markdown": "^1.10.0",
"@metalsmith/permalinks": "^3.0.1",
"@metalsmith/sass": "^1.6.0",
"browser-sync": "^3.0.2",
"concurrently": "^9.0.1",
"eslint": "^8.57.0",
"glob": "^11.0.0",
"gray-matter": "^4.0.3",
"js-beautify": "^1.14.8",
"jstransformer-nunjucks": "^1.2.0",
"marked": "^9.1.5",
"metalsmith": "^2.6.0",
"metalsmith-renamer": "^0.5.217",
"metalsmith-sitemap": "^1.2.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"stylelint": "^16.6.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-selector-bem-pattern": "^4.0.0"
},
"engines": {
"npm": "9.x",
"node": "18.x"
}
}