-
Notifications
You must be signed in to change notification settings - Fork 838
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.27 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.27 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
{
"name": "kitsune",
"description": "Platform for Mozilla Support",
"repository": {
"type": "git",
"url": "git://github.com/mozilla/kitsune.git"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"install-dev": "npm install",
"install-prod": "npm ci",
"development": "npm run install-dev",
"stylelint": "npx stylelint kitsune/sumo/static/sumo/scss/**/*",
"watch:stylelint": "onchange 'kitsune/sumo/static/sumo/scss/**/*' -- npm run stylelint",
"build:styleguide:copy": "mkdir -p styleguide/build/static && cp -r dist/. styleguide/build/static/",
"build:styleguide:styles": "sass styleguide/kss-template/kss-assets/scss/kss.scss styleguide/build/css/kss.css",
"build:styleguide:kss": "kss --config styleguide/kss-config.json --custom full",
"build:styleguide": "npm run webpack:build && concurrently --raw npm:build:styleguide:*",
"watch:styleguide": "onchange 'styleguide/styleguide-examples/*.njk' 'styleguide/kss-template/**/*' -- npm run build:styleguide:kss",
"watch": "npm run build && concurrently --raw npm:watch:*",
"browser-sync": "browser-sync start --no-open --files \"kitsune/**/*.html\" \"dist\" --proxy 127.0.0.1:8000",
"browser-sync:styleguide": "browser-sync start --no-open --serveStatic \"styleguide/build\" --files \"styleguide/build/**/*\" --port 4000 --reload-delay=300",
"start": "concurrently --raw --kill-others \"npm run webpack:watch\" \"npm run browser-sync\"",
"lint:webpack": "npx eslint --no-eslintrc -c webpack/eslintrc.js kitsune",
"webpack:build": "npx webpack build --config webpack.dev.js",
"webpack:build:pre-render": "npx webpack build --config webpack.pre-render.js",
"webpack:build:prod": "npx webpack build --config webpack.prod.js",
"webpack:watch": "env-cmd npx concurrently npm:webpack:watch:*",
"webpack:watch:dev": "npx webpack watch --config webpack.dev.js",
"webpack:watch:pre-render": "npx webpack watch --config webpack.pre-render.js",
"webpack:test": "npx webpack build --config webpack.test.js && npx mocha --require ./webpack/mocha-require dist/tests.js"
},
"license": "MPL-2.0",
"dependencies": {
"@alpinejs/csp": "^3.15.8",
"@babel/runtime": "^7.28.6",
"@urql/svelte": "^3.0.4",
"codemirror": "^5.65.21",
"d3": "^3.5.17",
"graphql": "^16.13.1",
"htmx.org": "^1.9.12",
"jquery": "^3.6.3",
"jquery-ui": "1.14.1",
"nunjucks": "^3.2.4",
"svelte-navigator": "^3.2.2",
"tom-select": "^2.5.2",
"underscore": "^1.13.8"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@stylistic/stylelint-plugin": "^4.0.1",
"@mozilla-protocol/core": "22.0.0",
"@types/underscore": "^1.13.0",
"autoprefixer": "^10.4.27",
"babel-loader": "^9.2.1",
"baseline-browser-mapping": "^2.10.0",
"browser-sync": "^3.0.4",
"chai": "^4.5.0",
"chai-lint": "0.1.1",
"color-string": "^1.9.1",
"compression-webpack-plugin": "^10.0.0",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^7.1.4",
"cssnano": "^7.1.3",
"env-cmd": "^10.1.0",
"eslint": "^9.31.0",
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-plugin-import": "^2.29.1",
"exports-loader": "^5.0.0",
"glob": "^8.1.0",
"html-webpack-plugin": "^5.6.6",
"image-minimizer-webpack-plugin": "^3.8.3",
"imagemin": "^9.0.1",
"imagemin-svgo": "^10.0.1",
"jsdom": "^21.1.2",
"kss": "^3.1.0",
"locutus": "^2.0.39",
"mini-css-extract-plugin": "^2.10.1",
"mocha": "^11.7.5",
"onchange": "^7.1.0",
"path-parse": "^1.0.7",
"postcss": "^8.4.31",
"postcss-custom-properties": "^13.3.12",
"postcss-loader": "^8.2.1",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"sharp": "^0.34.5",
"sinon": "^21.0.2",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"style-loader": "^3.3.1",
"stylelint": "^16.26.1",
"stylelint-config-recommended-scss": "^16.0.2",
"stylelint-order": "^7.0.1",
"stylelint-scss": "^6.14.0",
"svelte-loader": "^3.2.4",
"svelte-preprocess": "^5.0.1",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.8.0"
}
}