-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 2.31 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
{
"name": "pageflash",
"slug": "pageflash",
"homepage": "https://theaminul.com/pageflash/",
"description": "PageFlash - Fast and Efficient Headless Browser WordPress Plugin",
"version": "1.0.0",
"scripts": {
"prod": "grunt default --environment=production && webpack --env=development && webpack --env=production",
"dev": "concurrently \"grunt default\" \"webpack --env=developmentLocal\" \"webpack --env=productionLocal\"",
"watch": "concurrently \"grunt default watch\" \"webpack --env=developmentLocalWithWatch\" \"webpack --env=productionLocalWithWatch\"",
"clean": "rimraf build && rimraf pageflash.zip",
"zip": "npm run clean && npm run prod && node scripts/zip.js",
"lint": "eslint ."
},
"devDependencies": {
"@babel/core": "~7.24.7",
"@babel/eslint-parser": "7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
"@babel/plugin-transform-optional-chaining": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@lodder/grunt-postcss": "^3.1.1",
"@wordpress/eslint-plugin": "^19.2.0",
"archiver": "^7.0.1",
"autoprefixer": "~10.4.19",
"babel-loader": "9.1.3",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"cssnano": "7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-no-jquery": "^3.0.2",
"eslint-plugin-react": "^7.34.3",
"eslint-webpack-plugin": "^4.2.0",
"fs-extra": "^11.2.0",
"grunt": "^1.6.1",
"grunt-checktextdomain": "^1.0.1",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-text-replace": "^0.4.0",
"grunt-webpack": "^6.0.0",
"load-grunt-tasks": "^5.1.0",
"npm-check-updates": "^16.14.20",
"rimraf": "^5.0.7",
"sass": "^1.77.6",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"intersection-observer": "^0.12.2",
"quicklink": "^2.3.0"
}
}