-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.26 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.26 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
{
"name": "constant-contact-forms",
"version": "2.18.0",
"description": "",
"main": "build/index.js",
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"build": "wp-scripts build",
"build:release": "run-s styles build scripts:build",
"format": "wp-scripts format",
"dev": "wp-scripts start --output-path 'assets/js'",
"lint": "run-p lint:*",
"lint:css": "wp-scripts lint-style '**/*.scss'",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"stylesfront": "run-s stylesfront:compile stylesfront:compress",
"stylesfront:compile": "sass assets/sass/style.scss assets/css/style.css",
"stylesfront:compress": "sass --style=compressed assets/sass/style.scss assets/css/style.min.css",
"stylesadmin": "run-s stylesadmin:compile stylesadmin:compress",
"stylesadmin:compile": "sass assets/sass/admin-style.scss assets/css/admin-style.css",
"stylesadmin:compress": "sass --style=compressed assets/sass/admin-style.scss assets/css/admin-style.min.css",
"styles": "run-s stylesfront stylesadmin",
"start": "wp-scripts start",
"watch": "wp-scripts start",
"scripts:watch": "wp-scripts start --webpack-src-dir=assets/js/ --config=assets/js/webpack.config.js --output-path=assets/js/",
"scripts:build": "wp-scripts build --webpack-src-dir=assets/js/ --config=assets/js/webpack.config.js --output-path=assets/js/"
},
"repository": {
"type": "git",
"url": "git@github.com/WebDevStudios/constant-contact-forms.git"
},
"author": "Constant Contact",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/WebDevStudios/constant-contact-forms/issues"
},
"overrides": {
"graceful-fs": "^4.2.9"
},
"browserslist": [
"last 2 versions"
],
"homepage": "https://github.com/WebDevStudios/constant-contact-forms#readme",
"devDependencies": {
"@wordpress/prettier-config": "^4.41.0",
"@wordpress/scripts": "^31.6.0",
"autoprefixer": "^10.4.27",
"browser-sync": "^3.0.4",
"browserslist": "^4.28.1",
"npm-run-all": "^4.1.5",
"sass": "^1.97.3",
"stylelint-config-prettier": "^9.0.5",
"wp-pot-cli": "^1.5.0"
},
"dependencies": {
"@babel/runtime": "^7.28.6"
}
}