-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.66 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.66 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
{
"repository": "pypa/warehouse",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"lint": "eslint 'warehouse/static/js/warehouse/**' 'warehouse/admin/static/js/**' 'tests/frontend/**' 'webpack.*.js'",
"lint:fix": "eslint 'warehouse/static/js/warehouse/**' 'warehouse/admin/static/js/**' 'tests/frontend/**' 'webpack.*.js' --fix",
"stylelint": "stylelint '**/*.scss' --cache",
"stylelint:fix": "stylelint '**/*.scss' --cache --fix",
"test": "NODE_OPTIONS='$NODE_OPTIONS --experimental-vm-modules' jest --coverage"
},
"jest": {
"setupFilesAfterEnv": [
"./tests/frontend/setup.js"
],
"testEnvironment": "jsdom",
"testRegex": ".*_test.js"
},
"dependencies": {
"@fontsource/ewert": "^5.2.8",
"@fontsource/source-code-pro": "^5.2.7",
"@fontsource/source-sans-3": "^5.2.9",
"@fortawesome/fontawesome-free": "^7.1.0",
"@hotwired/stimulus": "^3.2.1",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"admin-lte": "^3.2.0",
"date-fns": "^4.1.0",
"debounce": "^1.2.1",
"jquery": "^3.7.0",
"normalize.css": "^8.0.1",
"stimulus-autocomplete": "^3.1.0"
},
"overrides": {
"datatables.net": "^1.13.11",
"datatables.net-rowgroup-bs4": "<1.5.1",
"datatables.net-searchbuilder": "<1.8.1",
"datatables.net-searchpanes": "<2.3.2",
"sweetalert2": "11.4.8"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"babel-jest": "^30.2.0",
"compression-webpack-plugin": "^12.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^8.0.0",
"eslint": "^10.2.0",
"globals": "^17.5.0",
"gettext-parser": "^9.0.0",
"image-minimizer-webpack-plugin": "^5.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^8.1.1",
"rtlcss": "^4.0.0",
"sass-embedded": "^1.57.1",
"sass-loader": "^16.0.4",
"sharp": "^0.34.0",
"stylelint": "^16.6.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-selector-bem-pattern": "^4.0.0",
"svgo": "^3.0.2",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1",
"webpack-livereload-plugin": "^3.0.2",
"webpack-manifest-plugin": "^5.0.0",
"webpack-remove-empty-scripts": "^1.0.3"
}
}