-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
107 lines (107 loc) · 3.42 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
{
"name": "@qld-gov-au/qgds-bootstrap5",
"version": "1.1.15",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/qld-gov-au/qgds-bootstrap5"
},
"main": "index.js",
"scripts": {
"prepare": "npm run build",
"start": "npm run build",
"lint": "eslint --fix --ext .js,.json --ignore-pattern 'docs/*' --ignore-pattern 'dist/*' --ignore-pattern 'storybook-static/*' .",
"build": "node esbuild.js",
"test": "echo 'no unit tests built yet'",
"test:integration": "npm-run-all --parallel --race serve:test test:testrunner",
"test:testrunner": "sleep 2 && mocha --timeout 10000 --require ./test/testServer.test.js ",
"watch": "node esbuild.js --watch",
"serve": "live-server dist",
"serve:test": "live-server --no-browser --port=8081",
"dev-storybook": "npm-run-all --parallel watch storybook",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --webpack-stats-json ",
"build-storybook:serve": "live-server storybook-static"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"files": [
".esbuild",
".storybook",
".vscode",
"dist",
"src",
".eslintrc.cjs",
"esbuild.js",
"jsconfig.json",
"pom.xml",
"README.md",
"vite.config.js"
],
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"bootstrap": "^5.3.1",
"material-symbols": "^0.23.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@qld-gov-au/qgds-tokens": "^1.2.1",
"@storybook/addon-a11y": "^8.2.1",
"@storybook/addon-essentials": "^8.2.1",
"@storybook/addon-interactions": "^8.2.1",
"@storybook/addon-links": "^8.2.1",
"@storybook/addon-themes": "^8.2.1",
"@storybook/blocks": "^8.2.1",
"@storybook/cli": "^8.2.1",
"@storybook/html": "^8.2.1",
"@storybook/html-vite": "^8.2.1",
"@storybook/manager-api": "^8.2.1",
"@storybook/test": "^8.2.1",
"@storybook/theming": "^8.2.1",
"@stylistic/eslint-plugin-js": "2.1.0",
"@vitejs/plugin-vue": "5.1.3",
"@whitespace/storybook-addon-html": "^6.1.1",
"autoprefixer": "^10.4.20",
"chai": "^5.1.1",
"chalk": "^5.3.0",
"chromatic": "^11.5.5",
"esbuild": "0.23.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-eslint": "^0.3.7",
"esbuild-plugin-handlebars": "1.0.3",
"esbuild-sass-plugin": "3.3.1",
"eslint": "8.57.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-storybook": "^0.8.0",
"handlebars": "4.7.8",
"live-server": "1.2.2",
"minimist": "^1.2.8",
"mocha": "^10.7.3",
"npm-run-all2": "^6.2.3",
"onchange": "^7.1.0",
"portfinder": "^1.0.32",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"raw-loader": "^4.0.2",
"rimraf": "^6.0.1",
"run-parallel": "^1.2.0",
"sass": "^1.80.4",
"selenium-webdriver": "^4.24.1",
"storybook": "^8.2.1",
"vite": "^5.4.6",
"watch": "^1.0.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"exports": {
"./qld.bootstrap.min.js": "./dist/assets/js/qld.bootstrap.min.js",
"./qld.bootstrap.css": "./dist/assets/css/qld.bootstrap.css",
"./handlebars.helpers.bundle.js": "./dist/assets/js/handlebars.helpers.bundle.js",
"./handlebars.init.min.js": "./dist/assets/js/handlebars.init.min.js",
"./handlebarsInit": "./dist/assets/node/handlebars.init.min.js",
"./bootstrap.min.js": "./dist/assets/js/boostrap.min.js"
}
}