forked from IMIO/imio_smartweb_themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 2.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
{
"name": "smartweb_themes",
"description": "iA.Smartweb base theme for Plone",
"private": true,
"maintainers": [
{
"name": "Thomas Lambert (iMio)",
"email": "thomas.lambert@imio.be",
"url": "https://imio.be"
},
{
"name": "Antoine Duchêne (iMio)",
"email": "adu@imio.be",
"url": "https://imio.be"
}
],
"homepage": "https://imio.be",
"keywords": [
"imio",
"plone",
"smartweb"
],
"version": "0.0.2",
"license": "GPL version 2",
"scripts": {
"stylelint": "npx stylelint './**/*.{css,scss,sass}'",
"stylelint:fix": "npx stylelint './**/*.{css,scss,sass}' --fix",
"prettier": "npx prettier --check './**/*.{js,jsx,ts,tsx,json,css,scss,sass}'",
"prettier:fix": "npx prettier --write './**/*.{js,jsx,ts,tsx,json,css,scss,sass}'",
"dry-release": "release-it --dry-run",
"release": "release-it",
"build": "webpack --mode=production --progress --stats --env theme=$npm_config_theme",
"build:dev": "webpack --mode=development --progress --stats --env theme=$npm_config_theme",
"watch": "webpack serve --mode=development --env theme=$npm_config_theme --progress",
"start": "concurrently --names \"PLONE,WEBPACK\" -c \"bgBlue.bold,bgMagenta.bold\" \"../../../bin/instance fg\" \"npm:watch\""
},
"devDependencies": {
"@babel/core": "^7.17.9",
"autoprefixer": "10.4.5",
"babel-loader": "^8.2.5",
"concurrently": "^7.1.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"favicons": "^7.0.0-beta.4",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "7.0.0-beta.0",
"image-minimizer-webpack-plugin": "^3.2.3",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.2",
"release-it": "^14.14.2",
"sass": "^1.53.0",
"sass-loader": "^12.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.7.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^3.0.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
}
}