forked from oceanwp/oceanwp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 2.44 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
{
"name": "oceanwp",
"version": "1.0.0",
"description": "OceanWP Theme",
"main": "Gruntfile.js",
"scripts": {
"start": "npm install && npm run build",
"build": "cross-env NODE_ENV=production webpack --mode production",
"dev": "cross-env NODE_ENV=development webpack --watch --mode development",
"lint:js": "eslint assets/src",
"format:js": "eslint --fix assets/src",
"make:json": "wp i18n make-json languages --no-purge"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.16.0",
"@wordpress/babel-preset-default": "^6.3.2",
"babel-loader": "^8.2.3",
"babelify": "^10.0.0",
"bootstrap": "^5.1.1",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.3.0",
"file-loader": "^6.2.0",
"grunt": "^1.4.1",
"grunt-autoprefixer": "^3.0.4",
"grunt-bowercopy": "^1.2.5",
"grunt-browserify": "^6.0.0",
"grunt-cli": "^1.4.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-imagemin": "^4.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-newer": "^1.3.0",
"grunt-sass": "^3.1.0",
"grunt-svgstore": "^2.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"jit-grunt": "^0.10.0",
"mini-css-extract-plugin": "^2.3.0",
"react-bootstrap": "^1.6.3",
"sass": "^1.54.1",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.0",
"terser-webpack-plugin": "^5.2.4",
"time-grunt": "^2.0.0",
"url-loader": "^4.1.1",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"axios": "^0.21.1",
"delegate": "^3.2.0",
"heightify": "^5.0.5",
"infinite-scroll": "^4.0.1",
"js-cookie": "^2.2.1",
"qs": "^6.5.2",
"react-perfect-scrollbar": "^1.5.8",
"responsive-auto-height": "0.0.5"
}
}