-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
128 lines (128 loc) · 3.57 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "lbh-frontend",
"version": "3.6.0",
"description": "Everything you need to make digital services for Hackney",
"license": "MIT",
"homepage": "https://design-system.hackney.gov.uk",
"main": "lbh/all.js",
"types": "lbh/index.d.ts",
"scripts": {
"build:sass": "cross-var sass lbh/all.scss dist/lbh-frontend-$npm_package_version.min.css --load-path=./ --no-source-map",
"build:sass-ie8": "cross-var sass lbh/all-ie8.scss dist/lbh-frontend-ie8-$npm_package_version.min.css --load-path=./ --no-source-map",
"build:js": "cross-var parcel build lbh/all.js --out-dir dist --global LBHFrontend --out-file lbh-frontend-$npm_package_version.min.js --no-source-maps",
"build:sassdoc": "sassdoc lbh --dest static/sassdoc",
"build:docs": "docusaurus build",
"build:assets": "copyfiles lbh/assets/**/**/**/* dist/assets -u 2",
"build": "npm-run-all build:*",
"clean:docs": "docusaurus clear",
"clean:dist": "rimraf dist",
"clean": "npm-run-all clean:*",
"start": "docusaurus start",
"semantic-release": "semantic-release",
"test": "jest",
"prepublishOnly": "npm-run-all -s clean build"
},
"devDependencies": {
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@docusaurus/core": "2.0.0-alpha.70",
"@docusaurus/preset-classic": "2.0.0-alpha.70",
"@mdx-js/react": "^1.6.21",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"copyfiles": "^2.4.1",
"cross-var": "^1.1.0",
"docusaurus-image-loader": "^1.0.1",
"docusaurus-plugin-sass": "^0.1.11",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"parcel-bundler": "^1.12.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"sassdoc": "^2.7.0",
"semantic-release": "^17.3.9",
"standard": "^13.1.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"browserslist": [
">0.1%",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Samsung versions",
"Safari >= 9",
"ie 8-11",
"iOS >= 9"
],
"standard": {
"globals": [
"page",
"browser",
"context"
],
"ignore": [
"/dist/**/*.js",
"/package/**/*.js",
"/src/vendor/polyfills/**/*.js"
]
},
"dependencies": {
"@reach/dialog": "^0.15.0",
"@tippyjs/react": "^4.2.5",
"dialog-polyfill": "^0.5.6",
"govuk-frontend": "^3.11.0",
"leaflet": "^1.7.1",
"underscore": "^1.9.1"
},
"sasslintConfig": "config/.sass-lint.yml",
"bugs": {
"url": "https://github.com/LBHackney-IT/LBH-frontend/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LBHackney-IT/LBH-frontend.git"
},
"keywords": [
"govuk",
"frontend",
"design system",
"template",
"hackney"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"dist",
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}