-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "django-pattern-library",
"version": "0.1.0",
"private": true,
"license": "BSD-3-Clause",
"browserslist": [
"> 1% and last 2 versions",
"Firefox ESR",
"ios_saf 14",
"safari 14",
"not ie 11",
"not ie_mob 11",
"not android 4.4.3-4.4.4",
"not OperaMini all"
],
"type": "module",
"scripts": {
"start": "webpack --mode development --watch",
"build": "webpack --mode production",
"lint": "npm run lint:format && npm run lint:css",
"lint:format": "prettier --check '**/?(.)*.{md,css,scss,js,json,yaml,yml}'",
"lint:css": "stylelint --report-needless-disables --report-unscoped-disables 'pattern_library/static/pattern_library/src/scss/'",
"format": "prettier --write '**/?(.)*.{md,css,scss,js,json,yaml,yml}'"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"prettier": "^3.7.3",
"sass": "^1.86.3",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"stylelint": "^17.4.0",
"stylelint-config-torchbox": "^5.0.0",
"webpack": "^5.99.2",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"highlight.js": "^11.11.1"
}
}