-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1012 Bytes
/
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
{
"name": "rer.newsletter",
"version": "2.0.0",
"description": "Newsletter add-on for Plone",
"main": "index.js",
"repository": "[email protected]:RedTurtle/rer.newsletter.git",
"author": "Piero Nicolli <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.20.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js",
"start": "NODE_ENV=development webpack serve --config webpack.config.js",
"stats": "NODE_ENV=production webpack --config webpack.config.js --json > stats.json"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": "*.css",
"options": {
"tabWidth": 4
}
}
]
},
"devDependencies": {
"@patternslib/dev": "^3.3.5"
},
"dependencies": {
"@patternslib/patternslib": ">=9.7.0-alpha.0",
"@plone/mockup": "^5.1.1"
},
"resolutions": {
"@patternslib/patternslib": "<10",
"jquery": "<4"
}
}