-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
113 lines (113 loc) · 4 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
{
"name": "nsw-design-system",
"version": "3.18.1",
"description": "Design system for Digital NSW",
"main": "dist/js/main.js",
"types": "dist/js/main.d.ts",
"style": "dist/css/main.css",
"files": [
"dist/{css,js}/**/*.{css,d.ts,js,map}",
"src/{components,patterns,styles,core}/**/*.{scss,js}",
"src/global/{scripts,scss}/**/*.{scss,js}",
"src/main.{scss,js}"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalnsw/nsw-design-system.git"
},
"bugs": {
"url": "https://github.com/digitalnsw/nsw-design-system/issues"
},
"homepage": "https://www.digital.nsw.gov.au/digital-design-system",
"scripts": {
"dev": "gulp",
"starterkit:build": "gulp build",
"prod:build": "gulp buildprod",
"surge": "gulp surge",
"add": "node add-component.js",
"git-tag": "git tag v$npm_package_version && git push origin v$npm_package_version",
"changelog:build": "auto-changelog -p --commit-limit false",
"bump:major": "gulp bumping --type major",
"bump:minor": "gulp bumping --type minor",
"bump:patch": "gulp bumping --type patch",
"commit": "git add . && git reset -- package-lock.json && git commit -m 'Built HTMLstarterkit and updated CHANGELOG.md' && git push origin",
"types": "tsc",
"release:major": "npm run bump:major && npm run starterkit:build && npm run changelog:build",
"release:minor": "npm run bump:minor && npm run starterkit:build && npm run changelog:build",
"release:patch": "npm run bump:patch && npm run starterkit:build && npm run changelog:build",
"release-local:major": "npm run bump:major && redrun starterkit:build surge changelog:build commit git-tag -s && npm publish",
"release-local:minor": "npm run bump:minor && redrun starterkit:build surge changelog:build commit git-tag -s && npm publish",
"release-local:patch": "npm run bump:patch && redrun starterkit:build surge changelog:build commit git-tag -s && npm publish"
},
"keywords": [
"design system"
],
"author": "Digital NSW",
"license": "ISC",
"dependencies": {
"@floating-ui/dom": "^1.6.11"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@floating-ui/dom": "^1.6.11",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.2",
"auto-changelog": "^2.4.0",
"autoprefixer": "^9.7.5",
"browser-sync": "^3.0.2",
"cssnano": "^6.0.0",
"del": "^5.1.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"gulp": "^4.0.2",
"gulp-better-rollup": "^4.0.1",
"gulp-bump": "^3.2.0",
"gulp-changed": "^4.0.3",
"gulp-eslint-new": "^1.7.2",
"gulp-inject-string": "^1.1.2",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-replace": "^1.1.4",
"gulp-sass": "^5.1.0",
"gulp-sass-glob": "^1.1.0",
"gulp-sitemap": "^8.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylelint": "^13.0.0",
"gulp-surge": "^0.1.4",
"gulp-zip": "^5.1.0",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"inquirer": "^7.1.0",
"jstransformer-handlebars": "^1.2.0",
"metalsmith": "^2.5.1",
"metalsmith-collections": "^0.9.0",
"metalsmith-data-loader": "^1.3.0",
"metalsmith-debug-ui": "^0.3.2",
"metalsmith-discover-helpers": "^0.1.1",
"metalsmith-discover-partials": "^0.1.2",
"metalsmith-dynamic-collections": "^0.1.2",
"metalsmith-ignore": "^1.0.0",
"metalsmith-in-place": "^4.4.1",
"metalsmith-layouts": "^2.3.1",
"metalsmith-register-helpers": "^0.4.1",
"postcss-normalize": "^10.0.1",
"redrun": "^10.0.2",
"rollup": "^3.20.6",
"sass": "^1.62.0",
"stylelint": "^13.2.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-declaration-use-variable": "^1.7.3",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.16.0",
"typescript": "5.6.3",
"uuid": "^9.0.0",
"yargs": "^15.3.1"
},
"overrides": {
"gulp-better-rollup": {
"rollup": "^1||^2||^3"
}
}
}