-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 3.02 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
{
"name": "@qld-gov-au/qgds-vanilla",
"version": "1.0.0",
"description": "",
"main": "index.js",
"licence": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/qld-gov-au/qgds-vanilla"
},
"scripts": {
"config": "node .esbuild/helpers/config.js",
"prepare": "npm run config && npm run build",
"build": "node esbuild.js",
"watch": "node esbuild.js --watch",
"serve": "node esbuild.js --serve",
"add-component": "bash scripts/add_component.sh",
"test": "echo 'no tests exist'",
"test:integration": "echo 'no test:integration exist'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --webpack-stats-json ",
"package-docs": "npm run build-storybook && rm -rf docs/storybook && mv storybook-static docs/storybook",
"lint:js": "eslint \"./src/**/*.js\"",
"lint:styles": "stylelint \"./src/**/*.css\" \"./src/**/*.scss\" \"!./src/**/*.min.css\" \"!./src/**/custom.css\"",
"lint": "npm run lint:js && npm run lint:styles"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@chromatic-com/storybook": "^3.1.0",
"@qld-gov-au/qgds-tokens": "^3.0.3",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-designs": "^8.0.3",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-mdx-gfm": "^8.4.7",
"@storybook/addon-storysource": "^8.4.7",
"@storybook/addon-themes": "^8.4.7",
"@storybook/blocks": "^8.3.6",
"@storybook/cli": "^8.4.7",
"@storybook/html": "^8.4.7",
"@storybook/html-vite": "^8.4.7",
"@storybook/manager-api": "^8.3.6",
"@storybook/test": "^8.3.6",
"@storybook/theming": "^8.3.6",
"@stylistic/eslint-plugin-js": "2.9.0",
"@vitejs/plugin-vue": "5.2.1",
"@whitespace/storybook-addon-html": "^6.1.1",
"autoprefixer": "^10.4.14",
"chromatic": "^11.20.0",
"core-js": "^3.31.0",
"esbuild": "0.24.0",
"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": "9.13.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-storybook": "^0.10.1",
"flatpickr": "^4.6.13",
"handlebars": "^4.7.8",
"jsdoc": "^4.0.2",
"sass": "^1.82.0",
"stylelint": "^15.9.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-scss": "^5.0.1"
},
"dependencies": {
"bloodhound-js": "^1.2.3",
"corejs-typeahead": "^1.3.1",
"datatables.net": "^1.13.4",
"datatables.net-dt": "^1.13.4",
"esri-leaflet": "3.0.13",
"esri-leaflet-vector": "4.2.5",
"extract-loader": "^5.1.0",
"handlebars": "4.7.8",
"handlebars-loader": "^1.7.1",
"highlight.js": "^11.1.0",
"jquery": "^3.5.1",
"jquery-ui": "^1.13.0",
"jquery-validation": "^1.19.3",
"leaflet": "1.9.4",
"prismjs": "^1.29.0",
"select2": "^4.1.0-rc.0",
"tinymce": "^7.4.1",
"to-string-loader": "^1.1.6"
}
}