-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.83 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.83 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
{
"name": "gdpr-wordpress-plugin",
"version": "1.0.0",
"description": "",
"themeName": "gigya",
"themeURI": "https://trewknowledge.com",
"author": "Trew Knowledge",
"authorURI": "https://trewknowledge.com",
"textDomain": "gdpr",
"scripts": {
"prod": "cross-env NODE_ENV=production webpack --mode production --progress",
"dev": "cross-env NODE_ENV=development webpack --watch --mode development --progress",
"clean": "rm -rf dist/*",
"lint-css": "stylelint 'src/scss/**/*.scss'; exit 0",
"lint-css-fix": "stylelint 'src/scss/**/*.scss' --fix; exit 0",
"lint-js": "eslint src/js/; exit 0",
"lint-js-fix": "eslint src/js/ --fix; exit 0",
"pot": "wp-pot --src '**/*.php' --dest-file 'languages/gdpr.pot' --domain 'gdpr' --package 'GDPR' ",
"precommit": "npm run lint-css && npm run lint-js && npm run pot",
"update-deps": "rm -rf node_modules && rm package-lock.json && npm install"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/eslintrc": "^3.3.5",
"autoprefixer": "^10.4.27",
"babel-loader": "^10.1.1",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-webpack-plugin": "^5.0.3",
"foundation-sites": "^6.9.0",
"fs-extra": "^11.3.4",
"jest": "^30.3.0",
"jquery": "^4.0.0",
"js-cookie": "^3.0.5",
"mini-css-extract-plugin": "^2.10.1",
"prompt-sync": "^4.2.0",
"replace-in-file": "^8.4.0",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"slick-carousel": "^1.8.1",
"style-loader": "^4.0.0",
"stylelint": "^17.4.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-webpack-plugin": "^5.1.0",
"terser-webpack-plugin": "^5.4.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"wp-pot-cli": "^1.5.0"
}
}