-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.2 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
{
"name": "dxpr_theme",
"theme": "dxpr-theme",
"elements": "dxpr-elements",
"types": "dxpr-param-types",
"version": "0.2.0",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/eslint-parser": "^7",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.5",
"@babel/runtime": "^7.28.4",
"@lodder/grunt-postcss": "^3.1.1",
"autoprefixer": "^10.4.20",
"babel-eslint": "^10",
"babel-loader": "^10.0.0",
"browserslist": "^4",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19",
"eslint-config-prettier": "^10",
"eslint-detailed-reporter": "^0",
"eslint-plugin-babel": "^5",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7",
"eslint-plugin-spellcheck": "0.0.20",
"grunt": "^1",
"grunt-babel": "^8",
"grunt-contrib-concat": "^2",
"grunt-contrib-jshint": "^3",
"grunt-contrib-nodeunit": "^5",
"grunt-contrib-watch": "^1",
"grunt-postcss": "^0.9.0",
"grunt-sass": "^3",
"grunt-terser": "^2",
"grunt-webpack": "^7.0.0",
"postcss-cli": "^11.0.0",
"postcss-pxtorem": "^6.1.0",
"prettier": "^3",
"sass": "^1",
"stylelint": "^16.24.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-formatter-pretty": "^4.0.0",
"stylelint-order": "^7.0.0",
"stylelint-scss": "^6.5.0",
"terser": "^5",
"webpack": "^5.101.3",
"webpack-cli": "^5.1.4"
},
"browserslist": [
"> 1%",
"last 4 versions"
],
"scripts": {
"lint:scss": "stylelint \"scss/**/*.scss\" --custom-formatter=node_modules/stylelint-formatter-pretty/index.js --output-file stylelint-results.json",
"lint:scss:fix": "stylelint \"scss/**/*.scss\" --fix --custom-formatter=node_modules/stylelint-formatter-pretty/index.js --output-file stylelint-results.json",
"postinstall": "bash scripts/update-vendor-assets.sh",
"build": "npx grunt webpack babel terser",
"build:size": "npm run build && ls -lh js/minified/*.min.js | awk '{print $5, $9}'"
},
"dependencies": {
"bs-enhanced-dropdowns": "^1.1.1",
"dxb_slider": "^2.0.0",
"postcss": "^8.5.6",
"reinvented-color-wheel": "^0.4.0"
}
}