-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.93 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.93 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
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
{
"name": "@qld-gov-au/qgds-bootstrap5",
"version": "2.1.13",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/qld-gov-au/qgds-bootstrap5"
},
"main": "index.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"prepare": "husky && npm run build",
"ci:all": "npm ci && npm run lint && npm run test:run && npm run test:integration && npm run build && npm run build-storybook",
"start": "npm run build",
"lint": "eslint --fix --ext .js,.json --ignore-pattern 'docs/*' --ignore-pattern 'dist/*' --ignore-pattern 'storybook-static/*' --ignore-pattern 'src/js/handlebars.partials.js' .",
"build": "node esbuild.js",
"build:icons": "node esbuild.js --icons",
"build:theme": "node esbuild.js --theme",
"build:theme:icons": "node esbuild.js --theme --icons",
"test": "vitest watch",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"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": "http-server dist -p 8080",
"serve:test": "http-server . -p 8081 --silent",
"dev-storybook": "npm-run-all --parallel watch storybook",
"storybook": "storybook dev -p 6006",
"storybook:themes": "ENABLE_DYNAMIC_THEME=true storybook dev -p 6006",
"build-storybook": "storybook build --webpack-stats-json ",
"build-storybook:themes": "ENABLE_DYNAMIC_THEME=true storybook build --webpack-stats-json ",
"build-storybook:serve": "http-server storybook-static -p 8080"
},
"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": {
"bootstrap": "^5.3.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/json": "^1.0.0",
"@qld-gov-au/qgds-tokens": "^1.2.1",
"@storybook/addon-a11y": "^10.1.10",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-links": "^10.1.10",
"@storybook/addon-themes": "^10.1.10",
"@storybook/cli": "^10.1.10",
"@storybook/html-vite": "^10.1.10",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/ui": "^4.0.10",
"autoprefixer": "^10.4.20",
"chai": "^6.2.1",
"chalk": "^5.6.2",
"chromatic": "^15.0.0",
"esbuild": "0.27.3",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-handlebars": "1.0.3",
"esbuild-sass-plugin": "3.6.0",
"eslint": "10.0.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-storybook": "^10.1.10",
"globals": "17.3.0",
"handlebars": "4.7.8",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"mini-svg-data-uri": "^1.4.4",
"minimist": "^1.2.8",
"mocha": "^11.7.5",
"node-html-parser": "^7.0.1",
"npm-run-all2": "^8.0.4",
"onchange": "^7.1.0",
"portfinder": "^1.0.38",
"postcss": "^8.5.6",
"prettier": "3.8.1",
"raw-loader": "^4.0.2",
"rimraf": "^6.1.0",
"run-parallel": "^1.2.0",
"sass": "^1.94.0",
"selenium-webdriver": "^4.38.0",
"storybook": "^10.1.10",
"storybook-addon-deep-controls": "^0.10.0",
"storybook-addon-tag-badges": "^3.0.4",
"vite": "^7.1.11",
"vitest": "^4.0.10"
},
"peerDependencies": {
"typescript": ">=5.0.0 <5.9.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"
}
}